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  6.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.73 us    (57.3%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1884.00 ns (0.4%)
   patch tree reduce : 1042.00 ns (0.2%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 494.15 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.7%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (62.7%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (0.4%)
   patch tree reduce : 411.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 300.00 ns  (0.1%)
   LB compute        : 467.25 us  (98.3%)
   LB move op cnt    : 0
   LB apply          : 1964.00 ns (0.4%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (63.3%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1443.00 ns (0.3%)
   patch tree reduce : 370.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 281.00 ns  (0.1%)
   LB compute        : 455.46 us  (98.3%)
   LB move op cnt    : 0
   LB apply          : 1934.00 ns (0.4%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running none hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1233.00 ns (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 691.00 ns  (0.1%)
   LB compute        : 480.12 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.7%)
Info: cfl dt = 0.0024247161751115103                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2807e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   1.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.0024247161751115103
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.0%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 505.91 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.1%)
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.9142e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.45353617717551 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024247161751115103, dt = 0.002373509166415457
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.1%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 467.75 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.9%)
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    | 5.0061e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.27043155069425 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004798225341526968, dt = 0.002163174917997481
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1643.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 527.92 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.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    | 4.9472e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.78638047180968 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006961400259524448, dt = 0.0020782360781164094
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.0%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 569.64 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (63.3%)
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.9503e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.51349986701162 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009039636337640858, dt = 0.0020408368122952335
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.0%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 526.06 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.4%)
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.9366e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.34229371973181 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011080473149936092, dt = 0.0020243033391324763
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 382.62 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (63.8%)
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.9005e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.49287718337337 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013104776489068569, dt = 0.0020185614322841454
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 365.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.5%)
Info: cfl dt = 0.001977352718132415                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9059e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.398268155334875 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015123337921352713, dt = 0.001977352718132415
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 378.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.6%)
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    | 4.9544e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.81473135310278 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01710069063948513, dt = 0.001945373122581301
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 396.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.7%)
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    | 4.9277e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.65872663388368 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01904606376206643, dt = 0.001927026344226756
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 390.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.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    | 4.9543e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.44392785842844 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020973090106293186, dt = 0.0019172115400082504
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.2%)
   patch tree reduce : 1472.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 460.03 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.2%)
Info: cfl dt = 0.0019128570137259048                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8991e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.594755103253554 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022890301646301438, dt = 0.0019128570137259048
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 424.40 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.0%)
Info: cfl dt = 0.0019120490073137747                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9120e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.6138091081952 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024803158660027344, dt = 0.0019120490073137747
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 406.60 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.1%)
Info: cfl dt = 0.0018985564171508276                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9659e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.15789204658141 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026715207667341118, dt = 0.0018985564171508276
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 395.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.6%)
Info: cfl dt = 0.0018876672327990725                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8689e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.77848559708657 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028613764084491945, dt = 0.0018876672327990725
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 383.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.2%)
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.8952e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.76010794875639 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030501431317291015, dt = 0.0018817994012088589
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 466.60 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (68.3%)
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    | 4.9885e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.56610525982229 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03238323071849988, dt = 0.001879394414468752
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 418.32 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (66.6%)
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.9480e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.081829547126056 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03426262513296863, dt = 0.001879375781097
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 376.84 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.0%)
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.6491e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.99619293816131 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03614200091406563, dt = 0.001872231371694393
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (0.3%)
   patch tree reduce : 1583.00 ns (0.1%)
   gen split merge   : 1172.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.1%)
   LB compute        : 1568.69 us (97.9%)
   LB move op cnt    : 0
   LB apply          : 17.32 us   (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.7%)
Info: cfl dt = 0.0018653832363801836                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8970e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.36312711780819 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03801423228576002, dt = 0.0018653832363801836
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 378.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.6%)
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    | 4.9157e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.370839314875454 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.039879615522140206, dt = 0.0018619870766465889
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 351.31 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.2%)
Info: cfl dt = 0.001861064236379517                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1667e+05 | 65536 |      2 | 1.268e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.84604292110248 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.041741602598786794, dt = 0.001861064236379517
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 1183.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 376.33 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.0%)
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    | 4.8343e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.42152529354294 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04360266683516631, dt = 0.001860619703055981
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 377.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.5%)
Info: cfl dt = 0.0018529701425980334                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9061e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.144047104804265 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04546328653822229, dt = 0.0018529701425980334
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 406.30 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (61.6%)
Info: cfl dt = 0.001848782167804269                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9442e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.325191188170514 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047316256680820325, dt = 0.001848782167804269
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 396.58 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.5%)
Info: cfl dt = 0.0018471525320599262                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9069e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.832737752533646 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.049165038848624595, dt = 0.0018471525320599262
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.3%)
   LB compute        : 386.40 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.1%)
Info: cfl dt = 0.0018474045774290837                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9084e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.803838611408004 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051012191380684524, dt = 0.0018474045774290837
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 427.44 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (66.0%)
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.4514e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.17339231910169 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.052859595958113605, dt = 0.0018422808250135414
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 442.69 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.1%)
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.8685e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.269188312442154 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05470187678312714, dt = 0.001837289510892964
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 397.46 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.2%)
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    | 4.9329e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.785477081628855 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05653916629402011, dt = 0.0018349269174648473
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 375.26 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.5%)
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    | 4.8991e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.38099993326235 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.058374093211484956, dt = 0.0018345520796924115
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 372.65 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.2%)
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    | 4.9972e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.358989475563405 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.060208645291177365, dt = 0.0018330226411893994
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 390.46 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.6%)
Info: cfl dt = 0.0018271832687232598                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0489e+05 | 65536 |      2 | 1.298e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.837729834206684 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06204166793236676, dt = 0.0018271832687232598
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.89 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.8%)
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.9791e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.975289263632725 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06386885120109002, dt = 0.0018240223435452088
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 400.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.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.6766e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.85747655572674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06569287354463524, dt = 0.0018229320316513597
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.2%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 463.94 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.0%)
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.7431e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.49579707494864 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0675158055762866, dt = 0.0018234373281734494
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 414.02 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.1%)
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    | 5.0386e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.46876326963438 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06933924290446004, dt = 0.001818480617001952
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 400.13 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.6%)
Info: cfl dt = 0.0018144802714904654                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0129e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.07464021276669 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07115772352146199, dt = 0.0018144802714904654
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1103.00 ns (0.2%)
   LB compute        : 422.51 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.8%)
Info: cfl dt = 0.0018126113886511727                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0139e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.975150457010166 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07297220379295245, dt = 0.0018126113886511727
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.3%)
   LB compute        : 387.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.8%)
Info: cfl dt = 0.0018124176557584044                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0648e+05 | 65536 |      2 | 1.294e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.430319227753145 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07478481518160363, dt = 0.0018124176557584044
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 442.14 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.4%)
Info: cfl dt = 0.0018111618083248196                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0119e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.89830997131268 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07659723283736203, dt = 0.0018111618083248196
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.1%)
   patch tree reduce : 1654.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 477.86 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.3%)
Info: cfl dt = 0.0018063128788408575                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0190e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.93412869513008 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07840839464568684, dt = 0.0018063128788408575
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 414.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.8%)
Info: cfl dt = 0.0018036363067905929                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0173e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.78304392759597 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0802147075245277, dt = 0.0018036363067905929
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.1%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 455.85 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.0%)
Info: cfl dt = 0.001802695184841617                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0336e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.87135056778645 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08201834383131829, dt = 0.001802695184841617
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 398.78 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.8%)
Info: cfl dt = 0.001803137511896323                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9819e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.33340121304473 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0838210390161599, dt = 0.001803137511896323
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1412.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 376.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.3%)
Info: cfl dt = 0.001799469197137841                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0309e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.83084416250988 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08562417652805623, dt = 0.001799469197137841
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 387.58 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.2%)
Info: cfl dt = 0.001795981304177961                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0270e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.69046068342196 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08742364572519408, dt = 0.001795981304177961
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 383.36 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (63.9%)
Info: cfl dt = 0.0017942745437257367                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1285e+05 | 65536 |      2 | 1.278e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.59568315667276 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08921962702937204, dt = 0.0017942745437257367
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 424.64 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.0%)
Info: cfl dt = 0.0017940067514837564                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0258e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.53556096579911 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09101390157309779, dt = 0.0017940067514837564
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 415.62 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (63.1%)
Info: cfl dt = 0.0017938225778022165                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0293e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.562206799613286 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09280790832458154, dt = 0.0017938225778022165
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 388.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (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    | 4.9761e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.03307633388245 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09460173090238376, dt = 0.001789568100346248
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.2%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 383.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.0%)
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    | 5.0363e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.508565467760164 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09639129900273001, dt = 0.0017871000630718
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 376.14 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.7%)
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    | 5.0096e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.178831860516055 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09817839906580181, dt = 0.001786113881783665
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 427.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (70.2%)
Info: cfl dt = 0.0017863382569071576                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0196e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.2494685559458 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09996451294758547, dt = 0.0017863382569071576
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.82 us   (4.4%)
   patch tree reduce : 1633.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 437.10 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.5%)
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    | 4.8973e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.05597659077613 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10175085120449263, dt = 0.0017842742941110575
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 393.02 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.1%)
Info: cfl dt = 0.001781083882303111                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0028e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.03423654882674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10353512549860369, dt = 0.001781083882303111
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.0%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 459.61 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.6%)
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    | 4.9676e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.6015598920577 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1053162093809068, dt = 0.0017793887285211427
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 412.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.5%)
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    | 5.0885e+05 | 65536 |      2 | 1.288e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.73775728750346 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10709559810942794, dt = 0.0017789424783942155
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 370.34 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (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    | 5.0305e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.15809829918162 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10887454058782216, dt = 0.0017795268008289752
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 391.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.6%)
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    | 5.0454e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.31994578432376 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11065406738865113, dt = 0.0017761084934211427
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 371.47 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (65.5%)
Info: cfl dt = 0.00177373997782396                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9706e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.49563516505536 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11243017588207227, dt = 0.00177373997782396
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 411.32 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.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    | 5.0368e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.07616900541819 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11420391585989623, dt = 0.001772636754545249
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 417.18 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.3%)
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    | 5.0148e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.83126562814071 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11597655261444148, dt = 0.0017725973559036459
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 393.33 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.2%)
Info: cfl dt = 0.0017720672636864564                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9820e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.51083770546568 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11774914997034512, dt = 0.0017720672636864564
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 400.99 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (63.3%)
Info: cfl dt = 0.0017690597624408129                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0040e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.7104498638576 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11952121723403157, dt = 0.0017690597624408129
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 379.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.9%)
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    | 5.0516e+05 | 65536 |      2 | 1.297e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.090131573410325 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12129027699647238, dt = 0.0017673317576812216
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 409.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.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.9609e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.162038908491446 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1230576087541536, dt = 0.0017666842650221255
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1001.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 423.52 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.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.9579e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.11534417750333 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12482429301917572, dt = 0.0017669511589051942
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 401.84 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.0%)
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    | 5.0142e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.66865805770037 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1265912441780809, dt = 0.0017652435535778796
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 422.26 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.2%)
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    | 5.1348e+05 | 65536 |      2 | 1.276e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.79119489447851 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12835648773165878, dt = 0.0017629256865728982
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 358.77 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.0%)
Info: cfl dt = 0.0017617006464616402                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7543e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.041129979298844 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1301194134182317, dt = 0.0017617006464616402
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.3%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 354.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.2%)
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    | 5.0823e+05 | 65536 |      2 | 1.290e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.18271663693973 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13188111406469333, dt = 0.0017614054020814432
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 389.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.2%)
Info: cfl dt = 0.0017619021322769282                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9425e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.82234568233989 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13364251946677477, dt = 0.0017619021322769282
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 372.10 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.9%)
Info: cfl dt = 0.0017593187561237003                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8936e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.36275541964454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1354044215990517, dt = 0.0017593187561237003
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.1%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 433.75 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.4%)
Info: cfl dt = 0.0017575506703019208                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6461e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.900968582129586 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1371637403551754, dt = 0.0017575506703019208
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 418.50 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.7%)
Info: cfl dt = 0.001756722854054998                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9632e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.91770707020353 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13892129102547732, dt = 0.001756722854054998
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 385.56 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.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    | 5.0052e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.30006230385022 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14067801387953233, dt = 0.001756700316930328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.2%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 394.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.8%)
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.7374e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.71523642040552 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14243471419646264, dt = 0.0017564246524487783
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 372.71 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.5%)
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    | 5.1477e+05 | 65536 |      2 | 1.273e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.666236013339194 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1441911388489114, dt = 0.0017541415630857454
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 408.09 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.1%)
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    | 5.0914e+05 | 65536 |      2 | 1.287e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.05982874719543 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14594528041199717, dt = 0.0017528139772800587
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 464.85 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.5%)
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    | 5.0908e+05 | 65536 |      2 | 1.287e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.01708266920088 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14769809438927722, dt = 0.0017523005690836273
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 1071.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 432.76 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.8%)
Info: cfl dt = 0.0017524885061734876                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0327e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.4432243242448 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14945039495836085, dt = 0.0017524885061734876
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 379.02 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.9%)
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    | 5.0356e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.47630514471017 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15120288346453434, dt = 0.0017513918802866718
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 423.84 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (69.0%)
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    | 5.0433e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.52040654407356 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.152954275344821, dt = 0.001749591610450994
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 16.73 us   (4.0%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 386.16 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.8%)
Info: cfl dt = 0.0017486185350548149                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9495e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.568429810782675 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.154703866955272, dt = 0.0017486185350548149
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1312.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 395.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.8%)
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.9759e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.795679645736534 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1564524854903268, dt = 0.0017483543546392612
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 400.32 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.7%)
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    | 4.9683e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.71515553548425 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15820083984496608, dt = 0.0017487039598497883
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 399.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.7%)
Info: cfl dt = 0.0017469794958784625                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9735e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.774621876616195 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15994954380481588, dt = 0.0017469794958784625
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 409.00 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.3%)
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    | 4.9767e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.75900209064247 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16169652330069434, dt = 0.0017455728813794461
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 412.29 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.8%)
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    | 5.1286e+05 | 65536 |      2 | 1.278e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.17704990405253 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16344209618207378, dt = 0.001744886041224492
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 426.49 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.3%)
Info: cfl dt = 0.001744819398635306                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8187e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.18705516115979 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16518698222329828, dt = 0.001744819398635306
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 400.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.8%)
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.9571e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.51146366805802 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16693180162193358, dt = 0.0017449072994634403
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 397.91 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.8%)
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.9682e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.62066084802336 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16867670892139702, dt = 0.0017430927651733957
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 439.69 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.0%)
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.9592e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.484980156425614 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17041980168657042, dt = 0.0017420081863774705
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 401.92 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.9%)
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.9380e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.25277598928061 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17216180987294788, dt = 0.001741552731668755
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1562.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 369.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.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.9231e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.097524583774444 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17390336260461664, dt = 0.0017416421857145692
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 378.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.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    | 4.9506e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.362988645779666 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1756450047903312, dt = 0.001741112847842196
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1313.00 ns (0.3%)
   LB compute        : 383.37 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.7%)
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.9326e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.17675373522708 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1773861176381734, dt = 0.0017396547645334415
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (0.8%)
   patch tree reduce : 2.05 us    (0.3%)
   gen split merge   : 871.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 590.91 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (69.2%)
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.8495e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.342365605557184 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17912577240270686, dt = 0.0017388342244888865
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 377.33 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (63.1%)
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.9141e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.93805182980132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18086460662719575, dt = 0.0017385657769755363
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 424.29 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (63.5%)
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.7703e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.557096934898645 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1826031724041713, dt = 0.0017387779089120118
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 382.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.8%)
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.8067e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.91027751008656 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18434195031308329, dt = 0.0017377646553390802
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 374.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.2%)
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.9509e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.26052522901386 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18607971496842238, dt = 0.001736602090424916
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 419.44 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.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.5469e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.37457083390608 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1878163170588473, dt = 0.001735998436959442
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 409.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (69.6%)
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.8958e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.68660032297265 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18955231549580673, dt = 0.001735880998788392
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 368.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.0%)
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    | 4.8270e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.02798795776362 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1912881964945951, dt = 0.0017361888402087457
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 447.98 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.9%)
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    | 4.9120e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.846512129401724 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19302438533480384, dt = 0.001734799399116594
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 388.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.3%)
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.9657e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.320910308184146 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19475918473392043, dt = 0.001733882452199539
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1293.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 415.69 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.1%)
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.8625e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.31326581364126 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19649306718611997, dt = 0.001733457105242247
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 371.94 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.3%)
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.7506e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.23571837725033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19822652429136223, dt = 0.0017334613125068194
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 386.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.1%)
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    | 4.7640e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.36328434124405 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19995998560386904, dt = 4.0014396130966245e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 433.92 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.8%)
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.9011e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0773000037077083 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 24.121045673 (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.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     : 3.74 us    (57.4%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (0.4%)
   patch tree reduce : 872.00 ns  (0.2%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 388.22 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (63.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1192.00 ns (0.4%)
   patch tree reduce : 330.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 301.00 ns  (0.1%)
   LB compute        : 325.00 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 1904.00 ns (0.6%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (60.5%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (0.5%)
   patch tree reduce : 411.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 300.00 ns  (0.1%)
   LB compute        : 320.72 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 1914.00 ns (0.6%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.86 us    (2.2%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 425.32 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (64.3%)
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.8284e+05 | 65536 |      2 | 1.357e-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.0024247161751115103
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.2%)
   LB compute        : 488.89 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.1%)
Info: cfl dt = 0.002351520645183926                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9059e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.34308570703485 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024247161751115103, dt = 0.002351520645183926
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 477.13 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.9%)
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.8983e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.27261945763382 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004776236820295436, dt = 0.002260292005613433
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 436.82 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.0%)
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.8608e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.35286974315301 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007036528825908869, dt = 0.0021533711847929455
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.1%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 505.59 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.7%)
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.7837e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.585079977098076 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009189900010701815, dt = 0.002089575329838524
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.1%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 437.82 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.6%)
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.9824e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.19015418911357 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01127947534054034, dt = 0.002061959453263477
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.1%)
   patch tree reduce : 1512.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 502.48 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.4%)
Info: cfl dt = 0.002051926548606445                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8470e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.900522144677886 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013341434793803817, dt = 0.002051926548606445
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 395.44 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.2%)
Info: cfl dt = 0.0019922852903495915                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9096e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.338897404341864 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015393361342410261, dt = 0.0019922852903495915
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 429.67 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.6%)
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    | 4.6988e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.42323563970068 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017385646632759853, dt = 0.001953511383812545
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 398.96 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.3%)
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    | 4.8808e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.3758468879928 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0193391580165724, dt = 0.0019315363357800363
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 374.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.5%)
Info: cfl dt = 0.001922766239979531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8703e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.6749407054931 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021270694352352435, dt = 0.001922766239979531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1483.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 382.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.9%)
Info: cfl dt = 0.0019110020962162704                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9511e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.29406110588122 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023193460592331967, dt = 0.0019110020962162704
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 405.73 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.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    | 4.9612e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.0803982383631 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025104462688548237, dt = 0.0018778209476821859
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 395.19 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (64.9%)
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.9350e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.905379261288424 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026982283636230422, dt = 0.0018628096275361623
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1472.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 430.37 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.8%)
Info: cfl dt = 0.0018554754980100313                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8051e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.16966719171473 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028845093263766584, dt = 0.0018554754980100313
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.1%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 454.88 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.0%)
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.8031e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.95500658169913 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030700568761776615, dt = 0.0018535671212540935
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 404.76 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.4%)
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.8896e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.78578351764162 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03255413588303071, dt = 0.0018418600212724448
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 378.69 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.5%)
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.8461e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.03093379675199 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03439599590430315, dt = 0.0018250658910450614
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 411.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.1%)
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    | 4.7917e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.039095244620206 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03622106179534822, dt = 0.0018184210866263029
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 1243.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 412.58 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.0%)
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.8395e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.34145890107362 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03803948288197452, dt = 0.0018176015720027016
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.1%)
   patch tree reduce : 1983.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 474.92 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.1%)
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.9094e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.01710656263369 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.039857084453977225, dt = 0.001818799845751024
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 435.86 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.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.7800e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.7564635221854 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.041675884299728246, dt = 0.0018034901965326262
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 409.69 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.4%)
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.7493e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.05109576701221 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.043479374496260874, dt = 0.0017956047438197516
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 387.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (63.4%)
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.8953e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.284636151441546 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04527497924008063, dt = 0.0017934915300478458
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 395.78 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.8%)
Info: cfl dt = 0.0017948560835794073                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8996e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.27094288492537 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047068470770128476, dt = 0.0017948560835794073
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 373.34 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.0%)
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.8301e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.621621151286604 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04886332685370788, dt = 0.0017873322255620484
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 395.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.7%)
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.8735e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.84885247289516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05065065907926993, dt = 0.0017787079640840568
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 390.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (61.0%)
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.9291e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.16085217805882 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05242936704335399, dt = 0.0017757677878620824
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 382.28 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.1%)
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.8930e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.72873420728319 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05420513483121608, dt = 0.0017765479422788446
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 421.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.3%)
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    | 4.8574e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.402975627919346 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05598168277349492, dt = 0.0017746761050471413
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 445.88 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.6%)
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.8405e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.187934315655525 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05775635887854206, dt = 0.0017646784797223274
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 385.53 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.0%)
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.9496e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.97969422273366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05952103735826439, dt = 0.0017606774091432245
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 393.70 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.1%)
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.8525e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.93209875050127 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06128171476740761, dt = 0.0017610272789614467
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 416.34 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.4%)
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.9219e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.612182358481746 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06304274204636906, dt = 0.0017632056750679673
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 387.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.0%)
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.8276e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.75806386565499 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06480594772143702, dt = 0.0017520856549966613
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 394.05 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.5%)
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.8812e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.97922639820405 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06655803337643368, dt = 0.0017473358215376455
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 402.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.1%)
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.7293e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.39339302454644 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06830536919797132, dt = 0.0017468674469056803
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.1%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 426.50 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (66.4%)
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.9350e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.355536140899545 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.070052236644877, dt = 0.001749494503759047
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 435.05 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.9%)
Info: cfl dt = 0.0017408487955679745                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9344e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.42083167744825 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07180173114863606, dt = 0.0017408487955679745
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1193.00 ns (0.3%)
   LB compute        : 413.03 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.3%)
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.8850e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.713739695067815 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07354257994420403, dt = 0.001734923350729223
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 421.89 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (71.0%)
Info: cfl dt = 0.0017336833437348474                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8375e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.10289475581797 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07527750329493325, dt = 0.0017336833437348474
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 378.56 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.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    | 4.8656e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.33704847367141 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0770111866386681, dt = 0.001735756658289641
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 392.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.4%)
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    | 4.9406e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.10798277083956 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07874694329695774, dt = 0.0017315528522539134
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 358.83 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.7%)
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    | 5.0754e+05 | 65536 |      2 | 1.291e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.27544776340799 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08047849614921165, dt = 0.0017241658949628221
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (0.3%)
   patch tree reduce : 1774.00 ns (0.1%)
   gen split merge   : 912.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 1719.51 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.4%)
Info: cfl dt = 0.0017219207772036264                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9338e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.728898278333766 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08220266204417448, dt = 0.0017219207772036264
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.1%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 1202.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 469.14 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (68.0%)
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.9094e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.43696633738908 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0839245828213781, dt = 0.0017232382171286657
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 378.98 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.6%)
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.8848e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.24006649562759 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08564782103850677, dt = 0.0017248688828008837
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 399.80 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.5%)
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.8183e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.653058289213554 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08737268992130764, dt = 0.001715809835481906
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.5%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 375.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.2%)
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.9403e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.563630911561646 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08908849975678955, dt = 0.0017122267421482344
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 434.90 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.8%)
Info: cfl dt = 0.0017123537222116056                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7520e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.69487595506961 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09080072649893778, dt = 0.0017123537222116056
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 402.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.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.8593e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.70778097980866 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09251308022114939, dt = 0.0017151889866310222
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 385.15 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (63.2%)
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.7905e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.135223628114986 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09422826920778041, dt = 0.001710476349516371
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 416.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.1%)
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.8466e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.53810247162016 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09593874555729678, dt = 0.0017052234795964494
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 414.75 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.4%)
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.8379e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.31709416290093 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09764396903689324, dt = 0.0017038957954208331
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 406.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.2%)
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.9200e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.05024860175487 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09934786483231407, dt = 0.0017054254494145726
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 401.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (66.8%)
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.6244e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.322316614868285 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10105329028172864, dt = 0.0017083454641065893
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 382.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.9%)
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.8928e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.91470244242996 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10276163574583523, dt = 0.0017011708017333322
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 383.56 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.1%)
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    | 5.0305e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.008952237156876 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10446280654756857, dt = 0.0016982561471839586
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.6%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 379.41 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.4%)
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.8786e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.511885178152816 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10616106269475252, dt = 0.0016983888813206847
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 432.84 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.1%)
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.8703e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.43787261007943 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1078594515760732, dt = 0.0017005310653634385
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 396.97 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.6%)
Info: cfl dt = 0.0017002262477569213                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9062e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.83007044141632 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10955998264143664, dt = 0.0017002262477569213
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 419.76 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.3%)
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.9618e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.34091565356974 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11126020888919357, dt = 0.0016955197067749705
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.3%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 383.88 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.9%)
Info: cfl dt = 0.0016940980555360243                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8962e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.60247980224581 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11295572859596853, dt = 0.0016940980555360243
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 383.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.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    | 4.8991e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.59102913959379 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11464982665150455, dt = 0.0016949635929667172
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 365.24 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.4%)
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.5518e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.38091521170039 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11634479024447127, dt = 0.0016973577282177524
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 407.58 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.4%)
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.8480e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.2022745831672 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11804214797268901, dt = 0.0016952309878496708
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 413.82 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.2%)
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    | 4.8907e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.543039175279844 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11973737896053868, dt = 0.0016922141197974834
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 432.05 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.2%)
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.9073e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.61632287494957 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12142959308033617, dt = 0.001691738711574515
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1253.00 ns (0.3%)
   LB compute        : 376.21 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (62.9%)
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.8769e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.32084011040738 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12312133179191069, dt = 0.0016929707568785885
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 438.33 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.6%)
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    | 4.8394e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.00489983370184 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12481430254878928, dt = 0.0016953666690558168
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 405.08 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (62.7%)
Info: cfl dt = 0.0016922734783240867                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8939e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.57672244842237 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1265096692178451, dt = 0.0016922734783240867
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 409.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.9%)
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.8368e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.962756377677955 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1282019426961692, dt = 0.0016904658347707028
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 438.26 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (63.6%)
Info: cfl dt = 0.0016905799585851704                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5902e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.624993151163956 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1298924085309399, dt = 0.0016905799585851704
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 1092.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 424.54 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.8%)
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.7986e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.56248447616661 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13158298848952507, dt = 0.0016919808502272172
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 370.87 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (63.4%)
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    | 4.8671e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.236173535907575 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13327496933975227, dt = 0.0016939142473621316
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 380.30 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (64.3%)
Info: cfl dt = 0.0016907943321393536                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9177e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.758620157562575 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1349688835871144, dt = 0.0016907943321393536
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 388.16 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.5%)
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.8460e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.0089844478997 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13665967791925376, dt = 0.0016897843154393276
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 380.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.1%)
Info: cfl dt = 0.0016902230544775542                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8551e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.06665623655952 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1383494622346931, dt = 0.0016902230544775542
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 398.36 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.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.8675e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.192937131411774 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14003968528917066, dt = 0.0016916145789440465
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.1%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 416.40 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.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    | 4.8318e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.89865618311884 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1417312998681147, dt = 0.0016925101169647887
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1914.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 429.79 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.4%)
Info: cfl dt = 0.0016904176613256234                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9578e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.09352920371297 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14342380998507948, dt = 0.0016904176613256234
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 380.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.0%)
Info: cfl dt = 0.0016899078404215367                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9234e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.71708733014977 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1451142276464051, dt = 0.0016899078404215367
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1393.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 374.58 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.0%)
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.8348e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.88141174225008 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14680413548682664, dt = 0.0016904826519570251
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 413.87 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.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    | 4.8996e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.497861575909425 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14849461813878367, dt = 0.0016917533366995114
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.2%)
   patch tree reduce : 1572.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 437.98 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.4%)
Info: cfl dt = 0.0016923174520660402                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8775e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.32704768043714 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1501863714754832, dt = 0.0016923174520660402
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 402.23 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.2%)
Info: cfl dt = 0.0016908716167066877                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8683e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.256607965327966 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15187868892754924, dt = 0.0016908716167066877
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 381.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.8%)
Info: cfl dt = 0.001690633241596396                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8453e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.00390498288689 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15356956054425594, dt = 0.001690633241596396
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.1%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 423.44 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.6%)
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.8981e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.48793444444273 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15526019378585235, dt = 0.0016911873542640793
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.38 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.7%)
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.7435e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.066865785809284 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15695138114011642, dt = 0.0016922646637931866
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 393.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.0%)
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.8913e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.4692661342657 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1586436458039096, dt = 0.0016926837069749835
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 420.94 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.5%)
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    | 4.9169e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.71818565834999 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16033632951088458, dt = 0.001691661148613588
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.3%)
   LB compute        : 378.01 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.5%)
Info: cfl dt = 0.0016915607164140695                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8715e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.26843810503883 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16202799065949816, dt = 0.0016915607164140695
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 393.00 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.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.8523e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.087218684616616 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16371955137591224, dt = 0.0016920252777170154
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 411.00 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.0%)
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.9251e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.77676016258845 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16541157665362924, dt = 0.001692896121472443
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 417.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.2%)
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.8568e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.16516903265605 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16710447277510168, dt = 0.0016932812243009368
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.1%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 435.69 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.1%)
Info: cfl dt = 0.001692528888098055                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7903e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.55669730599164 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1687977539994026, dt = 0.001692528888098055
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 387.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.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.8310e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.915253279247715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17049028288750068, dt = 0.0016924576006673556
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 416.23 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (62.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.8657e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.23583362325044 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17218274048816803, dt = 0.0016928132566982363
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 376.39 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.0%)
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.8620e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.21157892279217 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17387555374486627, dt = 0.0016934792266023286
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 378.97 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.4%)
Info: cfl dt = 0.0016940869050650785                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8857e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.44949529514035 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17556903297146859, dt = 0.0016940869050650785
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 427.68 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.2%)
Info: cfl dt = 0.001693487866126987                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8428e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.066239985769975 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17726311987653368, dt = 0.001693487866126987
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (0.4%)
   patch tree reduce : 1734.00 ns (0.1%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.1%)
   LB compute        : 1489.47 us (98.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.5%)
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.7882e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.542979212799764 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17895660774266067, dt = 0.001693386693880746
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 386.19 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.0%)
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.8540e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.15250338870624 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18064999443654142, dt = 0.0016936225037281001
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 412.84 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.0%)
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.8344e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.97637825389522 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18234361694026952, dt = 0.0016941064830647177
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 391.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (65.1%)
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.9070e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.66472044510827 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18403772342333424, dt = 0.0016947860401335343
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1644.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 405.12 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.0%)
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.9228e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.830024398823376 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18573250946346778, dt = 0.0016945191215457876
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 417.94 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.8%)
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.9362e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.94710943139859 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18742702858501356, dt = 0.0016943707499528626
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1243.00 ns (0.3%)
   LB compute        : 409.22 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (62.8%)
Info: cfl dt = 0.001694490404365914                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8823e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.441602972873554 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1891213993349664, dt = 0.001694490404365914
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.3%)
   LB compute        : 407.43 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.1%)
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.8919e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.53398892226383 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19081588973933233, dt = 0.0016948090796908004
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 383.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.7%)
Info: cfl dt = 0.001695282738605939                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0289e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.81796271104608 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19251069881902313, dt = 0.001695282738605939
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.3%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 374.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.3%)
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    | 4.9100e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.72405179439841 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19420598155762908, dt = 0.0016955089227541137
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 421.55 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.9%)
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    | 5.0247e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.798601424852734 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1959014904803832, dt = 0.0016953096959158632
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 395.34 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.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.4291e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.24677861693381 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19759680017629905, dt = 0.0016953201859836152
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 406.15 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.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    | 4.8741e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.391283263081846 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19929212036228267, dt = 0.0007078796377173457
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 392.46 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.7%)
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.0645e+05 | 65536 |      2 | 2.139e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.91613783453154 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 39.902274124 (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.08 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (59.2%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (0.4%)
   patch tree reduce : 892.00 ns  (0.2%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 385.31 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.4%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1173.00 ns (0.3%)
   patch tree reduce : 391.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 300.00 ns  (0.1%)
   LB compute        : 357.44 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 1883.00 ns (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (64.9%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1142.00 ns (0.3%)
   patch tree reduce : 371.00 ns  (0.1%)
   gen split merge   : 361.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 260.00 ns  (0.1%)
   LB compute        : 350.25 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 1914.00 ns (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hll with only_last_step=False
Info: time since start : 40.069584022 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (1.6%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 434.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.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.7641e+05 | 65536 |      2 | 1.376e-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.0024247161751115103
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1363.00 ns (0.3%)
   LB compute        : 389.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.2%)
Info: cfl dt = 0.002373509166415457                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8159e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.14502928501943 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024247161751115103, dt = 0.002373509166415457
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 374.03 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (63.3%)
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.8415e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.12446545776297 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004798225341526968, dt = 0.00020177465847303223
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 426.18 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.5%)
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.8221e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.3447808563509955 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 40.686494501000006 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.005, dt = 0.0021366964471823805
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 480.31 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.8%)
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.8095e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.45051333369452 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007136696447182381, dt = 0.002042393752584492
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 401.67 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.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.5773e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.35420540675094 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009179090199766874, dt = 0.0008209098002331262
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 398.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.3%)
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.8334e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.795475769495983 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 41.171338694 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.01, dt = 0.001989469580709434
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (1.6%)
   patch tree reduce : 1984.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 428.87 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.0%)
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.8354e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.843887438791555 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011989469580709435, dt = 0.001977154693685554
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 394.24 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.0%)
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.7904e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   1.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.027574600741204 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013966624274394988, dt = 0.0010333757256050114
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1412.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 381.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.5%)
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.8538e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.552644553411806 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 41.655747777 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.015, dt = 0.0019325413466954986
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1033.00 ns (0.2%)
   LB compute        : 457.94 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.4%)
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.7872e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.81958355731574 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016932541346695498, dt = 0.0018922105688191683
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.4%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 419.32 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.5%)
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.9766e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.72807183828822 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018824751915514665, dt = 0.0011752480844853357
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.1%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 484.22 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.7%)
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.8499e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.310075628562004 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 42.131826389000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.02, dt = 0.0018637304114470384
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.60 us    (0.6%)
   patch tree reduce : 1573.00 ns (0.1%)
   gen split merge   : 1102.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 1286.52 us (98.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (63.6%)
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.7921e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.06077252154677 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021863730411447038, dt = 0.0018582997523339034
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.7%)
   patch tree reduce : 1443.00 ns (0.2%)
   gen split merge   : 1002.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.1%)
   LB compute        : 836.70 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.3%)
Info: cfl dt = 0.0018589869158084653                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8685e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.69774539319614 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023722030163780942, dt = 0.0012779698362190596
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 448.34 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.4%)
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.8175e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.818999017864606 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 42.613496277 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.025, dt = 0.0018618742652520084
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 408.97 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.2%)
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.8406e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.50744334322982 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02686187426525201, dt = 0.0018434102985827666
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.1%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 412.02 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.0%)
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.7637e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.23816285124224 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028705284563834775, dt = 0.0012947154361652238
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1233.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 384.25 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.0%)
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.4853e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.89980674812915 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 43.10355906 (s)                                          [Godunov][rank=0]
amr::Godunov: t = 0.03, dt = 0.0018341063136192858
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.7%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 419.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (61.5%)
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.8088e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.449060843004766 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031834106313619284, dt = 0.0018359057719445368
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1312.00 ns (0.3%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 418.42 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.2%)
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.8214e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.62380834803589 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03367001208556382, dt = 0.0013299879144361842
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 412.69 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.5%)
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.8439e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.3884245789082 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 43.58492581 (s)                                          [Godunov][rank=0]
amr::Godunov: t = 0.035, dt = 0.001816049736805951
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (1.6%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 450.71 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.1%)
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.8556e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.43834084630689 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03681604973680595, dt = 0.0018130077286621184
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (0.3%)
   patch tree reduce : 1343.00 ns (0.1%)
   gen split merge   : 922.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 1642.09 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.4%)
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.8199e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.002273686410746 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03862905746546807, dt = 0.0013709425345319326
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1053.00 ns (0.3%)
   LB compute        : 380.45 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (71.1%)
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.9229e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.07310406038309 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 44.062124833000006 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.04, dt = 0.001805832788895163
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 469.20 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.9%)
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.5928e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.55975126052073 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.041805832788895166, dt = 0.0017927342974056511
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 415.19 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (68.0%)
Info: cfl dt = 0.001788073748186579                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6822e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.10953488261516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04359856708630082, dt = 0.0014014329136991799
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 384.01 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.6%)
Info: cfl dt = 0.0017885814710754293                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6773e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.006901469849375 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 44.562013854 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.045, dt = 0.0017885814710754293
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 452.54 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.5%)
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.8218e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.3741951541314 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.046788581471075424, dt = 0.001789189120993069
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (0.6%)
   patch tree reduce : 1432.00 ns (0.1%)
   gen split merge   : 962.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.1%)
   LB compute        : 947.98 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (69.2%)
Info: cfl dt = 0.0017721787009417824                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8400e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.56897829287373 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04857777059206849, dt = 0.001422229407931512
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 420.57 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.2%)
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.8189e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.64791506939044 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 45.042242004 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.05, dt = 0.001766133880552604
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.6%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 406.56 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.0%)
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.8773e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.318163916887976 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05176613388055261, dt = 0.001764362650745321
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 381.31 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.4%)
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.8356e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   1.3% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.86593158671351 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05353049653129793, dt = 0.0014695034687020672
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 405.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.8%)
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.9230e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.73990598161878 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 45.516001643 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.055, dt = 0.0017613058098427893
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1453.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 403.15 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (64.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.8484e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.908892666459195 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05676130580984279, dt = 0.001749091875609621
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 993.00 ns  (0.2%)
   LB compute        : 384.85 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.0%)
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.8930e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.01187384802366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05851039768545241, dt = 0.001489602314547589
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 387.63 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.1%)
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.8954e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.05713334855613 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 45.9907095 (s)                                           [Godunov][rank=0]
amr::Godunov: t = 0.06, dt = 0.0017451652654214846
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 417.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.5%)
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.7768e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.79269696290984 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06174516526542148, dt = 0.0017491642670394983
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 377.83 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.2%)
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.9201e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.274991369447065 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06349432953246098, dt = 0.001505670467539022
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.3%)
   LB compute        : 378.58 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.0%)
Info: cfl dt = 0.0017317807770450089                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9089e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.60117422922909 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 46.461411648 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.065, dt = 0.0017317807770450089
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (1.6%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 428.11 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.5%)
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.7881e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.54858377283979 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06673178077704502, dt = 0.001729424507300354
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (0.3%)
   patch tree reduce : 1433.00 ns (0.1%)
   gen split merge   : 1192.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.1%)
   LB compute        : 1814.89 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.7%)
Info: cfl dt = 0.0017310989114589033                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8591e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.16172663605465 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06846120528434536, dt = 0.0015387947156546428
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 394.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.9%)
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.8406e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.91719463436029 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 46.943231691 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.07, dt = 0.001735047366276934
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1753.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.2%)
   LB compute        : 479.90 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (72.3%)
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    | 5.0421e+05 | 65536 |      2 | 1.300e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.055593576834845 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07173504736627694, dt = 0.0017236319809287627
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 428.11 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.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    | 5.0094e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.429754489774204 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0734586793472057, dt = 0.0015413206527943035
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 382.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.2%)
Info: cfl dt = 0.0017177851111772119                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0321e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.60581211896616 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 47.404137757 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.075, dt = 0.0017177851111772119
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1834.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 428.48 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.1%)
Info: cfl dt = 0.001719746638226188                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0446e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.60135971378005 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0767177851111772, dt = 0.001719746638226188
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.5%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 361.20 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (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    | 5.0714e+05 | 65536 |      2 | 1.292e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.908988434483064 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07843753174940339, dt = 0.0015624682505966103
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 376.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.1%)
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    | 5.0833e+05 | 65536 |      2 | 1.289e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.629012464560276 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 47.864248491000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.08, dt = 0.0017134759725273392
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 431.46 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.5%)
Info: cfl dt = 0.0017098744767283553                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0274e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.319461373675935 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08171347597252734, dt = 0.0017098744767283553
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.6%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 363.84 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (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.3652e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.000848200520636 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0834233504492557, dt = 0.0015766495507443107
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.3%)
   LB compute        : 405.13 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (61.3%)
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.8711e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.18802261661949 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 48.358921205 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.085, dt = 0.001711705784259328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1412.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 421.93 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.5%)
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.8382e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.4919022007403 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08671170578425934, dt = 0.0017119428114212652
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 385.15 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (65.4%)
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.7987e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.12653080619459 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08842364859568061, dt = 0.0015763514043193871
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1422.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 383.08 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.1%)
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.7611e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.22671878586274 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 48.83871885000001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.09, dt = 0.001703543388476863
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 465.07 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (62.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.6606e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.61324674869597 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09170354338847686, dt = 0.0017036745996443256
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.2%)
   patch tree reduce : 1502.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 416.78 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.8%)
Info: cfl dt = 0.0017056606182428464                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8032e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.95058909256279 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09340721798812118, dt = 0.0015927820118788183
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (0.8%)
   patch tree reduce : 1313.00 ns (0.2%)
   gen split merge   : 1052.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.1%)
   LB compute        : 706.88 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.1%)
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.7370e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.446271255812576 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 49.323492910000006 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.095, dt = 0.0017055094354247124
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1512.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 487.17 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.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.9114e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.01300000971219 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09670550943542472, dt = 0.0017007278161867427
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 394.65 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.2%)
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.9332e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.08793409999824 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09840623725161146, dt = 0.0015937627483885441
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1253.00 ns (0.3%)
   LB compute        : 402.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.4%)
Info: cfl dt = 0.0016994818557473485                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9441e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.284594283248566 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 49.795073587000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.1, dt = 0.0016994818557473485
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 425.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.3%)
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.6940e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.82121398930056 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10169948185574736, dt = 0.0017012392646695942
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.2%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 429.20 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.7%)
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.6993e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.91537099175536 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10340072112041696, dt = 0.001599278879583041
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.4%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 369.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.3%)
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.7488e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.718838485983476 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 50.281215219 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.105, dt = 0.0016978714089208506
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (1.6%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 415.50 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.5%)
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.7142e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.967851519683194 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10669787140892084, dt = 0.0016967007699610606
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 380.76 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (65.9%)
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.8317e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.03239898655412 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1083945721788819, dt = 0.0016054278211180967
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 379.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.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    | 4.7693e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.06010602482651 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 50.761495744 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.11, dt = 0.00169853915732137
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (1.7%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 422.76 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.8%)
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.8506e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.25764206812406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11169853915732136, dt = 0.0016989453569191033
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.1%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 439.41 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.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.7237e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   1.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.08414213134937 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11339748451424046, dt = 0.0016025154857595425
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 427.75 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.1%)
Info: cfl dt = 0.0016953802919238523                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7639e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.93644683206573 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 51.246883734 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.115, dt = 0.0016953802919238523
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (1.5%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 424.70 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.9%)
Info: cfl dt = 0.00169570554285492                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8790e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.43770458610666 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11669538029192386, dt = 0.00169570554285492
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 413.46 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.9%)
Info: cfl dt = 0.0016969481901767088                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8318e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.007152505623544 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11839108583477878, dt = 0.0016089141652212147
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1292.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 410.79 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.3%)
Info: cfl dt = 0.0016975221595522643                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7606e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.074633246888986 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 51.731992324000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.12, dt = 0.0016975221595522643
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 420.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (63.9%)
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.5077e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.03342188016605 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12169752215955226, dt = 0.0016952960980918424
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.4%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1053.00 ns (0.2%)
   LB compute        : 421.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.9%)
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.5908e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.752085075958504 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1233928182576441, dt = 0.0016071817423558982
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 413.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.5%)
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.8018e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.39311600871079 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 52.230997753000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.125, dt = 0.0016948007453538743
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 428.43 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.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.8342e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.00576301765458 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12669480074535389, dt = 0.0016957359742253682
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 407.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.0%)
Info: cfl dt = 0.0016968869331740126                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8537e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.211548182734504 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12839053671957926, dt = 0.0016094632804207476
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (0.9%)
   patch tree reduce : 1252.00 ns (0.2%)
   gen split merge   : 862.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.2%)
   LB compute        : 571.65 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.8%)
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    | 4.8003e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.439502219871216 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 52.711424769000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.13, dt = 0.0016951992650365729
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 507.90 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.4%)
Info: cfl dt = 0.0016945370196177426                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8967e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.59809027976036 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1316951992650366, dt = 0.0016945370196177426
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 380.27 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.0%)
Info: cfl dt = 0.0016946465597527055                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4802e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.70314025007441 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13338973628465434, dt = 0.0016102637153456723
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.3%)
   patch tree reduce : 1824.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 384.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.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.8698e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.075641444179034 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 53.197691260000006 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.135, dt = 0.0016953036984696892
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 445.91 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.3%)
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.8441e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.1106702709727 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1366953036984697, dt = 0.0016964228390942864
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 405.60 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.8%)
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.8639e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.325137868854455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13839172653756399, dt = 0.0016082734624360273
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 384.79 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.9%)
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.8867e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.171615152596786 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 53.678390705000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.14, dt = 0.0016951690780678736
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 444.96 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.0%)
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.5639e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.49810625504746 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1416951690780679, dt = 0.001695176328347805
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 400.06 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.7%)
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    | 4.8777e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   1.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.42041609386304 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1433903454064157, dt = 0.001609654593584281
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 369.77 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.9%)
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.9213e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.514917111551824 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 54.162153911000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.145, dt = 0.0016964035172934838
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 437.61 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.6%)
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.8816e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.48998177829123 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14669640351729346, dt = 0.0016962833209502445
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.3%)
   LB compute        : 395.76 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.6%)
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.8784e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   1.3% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.457021570344615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1483926868382437, dt = 0.001607313161756302
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 419.13 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.5%)
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    | 4.8971e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.237340900371585 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 54.635562653 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.15, dt = 0.0016955909768465102
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 460.25 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (67.9%)
Info: cfl dt = 0.0016958011293639866                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7864e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.5812099241531 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1516955909768465, dt = 0.0016958011293639866
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (0.3%)
   patch tree reduce : 1332.00 ns (0.1%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.1%)
   LB compute        : 1664.31 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.5%)
Info: cfl dt = 0.001696305840548237                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7458e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.208877652365615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1533913921062105, dt = 0.0016086078937894988
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.5%)
   patch tree reduce : 1352.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 354.48 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.0%)
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.7478e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.95319710257206 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 55.116020513 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.155, dt = 0.0016970209331591069
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 433.99 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.6%)
Info: cfl dt = 0.0016964320243581328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7907e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.65853734226445 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1566970209331591, dt = 0.0016964320243581328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 424.21 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.7%)
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.8023e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   1.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.751364733087634 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15839345295751722, dt = 0.001606547042482781
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 1041.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 390.93 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (69.7%)
Info: cfl dt = 0.0016962301890475688                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8958e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.2054918040274 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 55.605117152000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.16, dt = 0.0016962301890475688
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (1.6%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 1283.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 407.25 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.1%)
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.8503e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.193797437777775 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16169623018904758, dt = 0.0016964920557647899
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (0.4%)
   patch tree reduce : 1433.00 ns (0.1%)
   gen split merge   : 942.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.1%)
   LB compute        : 1506.90 us (98.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.4%)
Info: cfl dt = 0.0016969490882670483                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2700e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.79251346393786 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16339272224481238, dt = 0.001607277755187625
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 412.12 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.6%)
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.8404e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.736017445644734 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 56.104189869 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.165, dt = 0.0016975473218523948
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.50 us    (1.7%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 417.82 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.1%)
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.7660e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.4423416374729 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1666975473218524, dt = 0.001697236443700041
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.0%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 480.50 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.0%)
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.8464e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.18404659280792 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16839478376555245, dt = 0.0016052162344475651
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 393.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.7%)
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.8612e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.86470426775425 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 56.580878714 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.17, dt = 0.0016972325256441438
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.6%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 413.85 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.6%)
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.8474e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.19289558620545 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17169723252564414, dt = 0.0016974644914854499
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 400.00 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.0%)
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.7246e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.054506068205264 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1733946970171296, dt = 0.0016053029828704268
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 409.17 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.6%)
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.8043e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.365282630230745 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 57.061957493 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.17500000000000002, dt = 0.0016980068029526683
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 394.67 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.2%)
Info: cfl dt = 0.0016978120240687166                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7322e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.1396858234957 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1766980068029527, dt = 0.0016978120240687166
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 379.33 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (63.9%)
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.8208e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.960558473663525 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1783958188270214, dt = 0.001604181172978586
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 368.92 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.0%)
Info: cfl dt = 0.0016978218078181734                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9050e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.22289781516708 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 57.542888947 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.18, dt = 0.0016978218078181734
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 425.41 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.1%)
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.8726e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.44373979420946 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18169782180781816, dt = 0.0016979854885523097
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.5%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1173.00 ns (0.3%)
   LB compute        : 373.17 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.8%)
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.9119e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.814872253026785 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18339580729637048, dt = 0.00160419270362952
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 394.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.1%)
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.7563e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.9128226644658 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 58.030558496000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.185, dt = 0.001698555643860214
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.38 us    (1.5%)
   patch tree reduce : 1934.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 455.53 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (70.3%)
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.8108e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.887023548118115 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1866985556438602, dt = 0.0016984122661449941
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (0.3%)
   patch tree reduce : 1372.00 ns (0.1%)
   gen split merge   : 952.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.0%)
   LB compute        : 2.23 ms    (99.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.8%)
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.8079e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.856190087164784 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1883969679100052, dt = 0.0016030320899947936
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.3%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 1163.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 418.24 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.4%)
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.8970e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.12143474892983 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 58.511060185000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.19, dt = 0.0016983943924654792
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 395.53 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (64.6%)
Info: cfl dt = 0.0016985000357384527                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9492e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.17373657426969 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19169839439246547, dt = 0.0016985000357384527
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 384.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.8%)
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.9145e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.85262971911167 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19339689442820393, dt = 0.0016031055717960763
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 432.11 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.0%)
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.8626e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.82100441086268 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 58.980330599000006 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.195, dt = 0.0016989557237630849
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 427.63 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.5%)
Info: cfl dt = 0.0016992348400731367                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8241e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   1.3% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.02168228813497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19669895572376309, dt = 0.0016992348400731367
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 16.73 us   (3.6%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 427.71 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.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.8242e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.03006189425774 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19839819056383623, dt = 0.0016018094361637814
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1392.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 376.99 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (63.2%)
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.8788e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.928251675343176 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 59.459163174000004 (s)                                   [Godunov][rank=0]
running minmod hllc
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  2.25 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (56.5%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (0.3%)
   patch tree reduce : 871.00 ns  (0.2%)
   gen split merge   : 1011.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 417.20 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (62.4%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1132.00 ns (0.3%)
   patch tree reduce : 380.00 ns  (0.1%)
   gen split merge   : 370.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 251.00 ns  (0.1%)
   LB compute        : 370.86 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 2.07 us    (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.9%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1303.00 ns (0.3%)
   patch tree reduce : 351.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 301.00 ns  (0.1%)
   LB compute        : 375.74 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 1903.00 ns (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (0.8%)
   patch tree reduce : 571.00 ns  (0.1%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 321.00 ns  (0.1%)
   LB compute        : 411.26 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.19 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.8%)
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.6957e+05 | 65536 |      2 | 1.396e-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.0024247161751115103
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.1%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 458.65 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.0%)
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.7454e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.20565631284693 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024247161751115103, dt = 0.0023171614643384517
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 415.88 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
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.4746e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.9548111166473 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004741877639449962, dt = 0.002075017695014586
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.8%)
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.5808e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.21365852402311 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006816895334464548, dt = 0.0019971385650064655
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.50 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.2%)
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    | 4.6664e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.19377260856573 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008814033899471014, dt = 0.001964895602302102
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 374.52 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.4%)
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.6849e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.56602261323139 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010778929501773116, dt = 0.001953632755420684
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 1193.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 378.73 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (63.7%)
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.7350e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.81408213714901 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0127325622571938, dt = 0.001953408169055018
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 424.88 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.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.6950e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.37964038279885 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014685970426248819, dt = 0.0019206023649325436
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1574.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 403.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.1%)
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.6688e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.25647063689284 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016606572791181363, dt = 0.0018848741424326908
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 373.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.0%)
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.6102e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.734046351627654 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018491446933614056, dt = 0.001868973738870141
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 397.83 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.2%)
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.6767e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.013265245501714 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020360420672484197, dt = 0.0018606402342983626
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1704.00 ns (0.3%)
   gen split merge   : 1172.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 542.32 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.9%)
Info: cfl dt = 0.0018595274236405425                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5842e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.85456588767982 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02222106090678256, dt = 0.0018595274236405425
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.1%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 445.49 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.6%)
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.6961e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.96892982471594 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024080588330423102, dt = 0.0018634342013967191
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.3%)
   LB compute        : 398.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.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.6582e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.68164411673618 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02594402253181982, dt = 0.0018470249392936802
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 413.79 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.4%)
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.6499e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.17776873138313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0277910474711135, dt = 0.0018380986030018343
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1313.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 396.61 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.4%)
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.6345e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.79469219329784 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029629146074115337, dt = 0.0018364522651864858
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 376.09 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.6%)
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.6075e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.479728859874506 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03146559833930182, dt = 0.0018308404082809989
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 1233.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 399.52 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.0%)
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.6929e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.196999031563685 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03329643874758282, dt = 0.0018132058078483473
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.2%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 431.14 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.9%)
Info: cfl dt = 0.0018069989569941447                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6830e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.644240758276396 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03510964455543117, dt = 0.0018069989569941447
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 377.44 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.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.6354e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.01202012151334 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036916643512425316, dt = 0.001807879734518125
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.1%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 422.07 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.1%)
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.6908e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.58424567192309 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03872452324694344, dt = 0.0018048658370763166
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 392.09 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.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.6746e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.346457932097145 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.040529389084019755, dt = 0.0017869421115257107
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 445.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.0%)
Info: cfl dt = 0.0017801824804279472                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7537e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.662484819748734 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04231633119554547, dt = 0.0017801824804279472
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 378.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.1%)
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.3270e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.31319904394523 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04409651367597341, dt = 0.001780351072519294
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 441.29 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (65.8%)
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.6921e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.88750021662647 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04587686474849271, dt = 0.001785022141096262
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 393.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.1%)
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.7091e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.175085502942935 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04766188688958897, dt = 0.0017684075018984259
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 403.71 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.2%)
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.7045e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.700165925234224 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0494302943914874, dt = 0.00175868551240217
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 419.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.3%)
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.6692e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.10753684594309 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05118897990388957, dt = 0.0017565307361034092
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 410.04 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.0%)
Info: cfl dt = 0.0017594862686143875                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6704e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.063802033538664 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.052945510639992976, dt = 0.0017594862686143875
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 368.92 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.0%)
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.6472e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.91607606582729 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05470499690860736, dt = 0.0017553973403803857
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 415.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.3%)
Info: cfl dt = 0.0017432187244815975                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6931e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.25362823853903 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.056460394248987744, dt = 0.0017432187244815975
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 397.48 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.8%)
Info: cfl dt = 0.0017385942621927087                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6750e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.766984390723266 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05820361297346934, dt = 0.0017385942621927087
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 380.87 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.1%)
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.6311e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.228487811112345 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05994220723566205, dt = 0.0017391195338796969
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 418.65 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.2%)
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.5356e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.32955783134612 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.061681326769541744, dt = 0.001743214837635062
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (0.3%)
   patch tree reduce : 1653.00 ns (0.1%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 1698.63 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.6%)
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.6184e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.225025002905355 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06342454160717681, dt = 0.0017334290485509615
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 385.58 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (62.6%)
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.5507e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.33222021587309 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06515797065572777, dt = 0.001726361888794154
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 419.54 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.2%)
Info: cfl dt = 0.0017246230917072956                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4936e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.613509368841086 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06688433254452193, dt = 0.0017246230917072956
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 375.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (63.9%)
Info: cfl dt = 0.001726611284768283                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3664e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.36550724399878 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06860895563622922, dt = 0.001726611284768283
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 395.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.1%)
Info: cfl dt = 0.0017290879300486015                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4258e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.9772226496897 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0703355669209975, dt = 0.0017290879300486015
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 422.56 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.9%)
Info: cfl dt = 0.0017191280394554377                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3698e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.5053305884756 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0720646548510461, dt = 0.0017191280394554377
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 376.66 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (63.8%)
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.4329e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.86234392915392 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07378378289050154, dt = 0.0017151471775685963
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 398.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (63.8%)
Info: cfl dt = 0.0017149228309445426                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4002e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.45679291629968 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07549893006807014, dt = 0.0017149228309445426
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 407.48 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.8%)
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.4473e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.89559333870504 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07721385289901468, dt = 0.001717371481878813
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 375.96 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.5%)
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.4328e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.81799487807043 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07893122438089349, dt = 0.0017167048819835972
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 401.35 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.4%)
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.4217e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.69710437019073 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08064792926287709, dt = 0.0017101068125198087
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 399.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.3%)
Info: cfl dt = 0.0017078381017851128                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6139e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.34280609533653 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08235803607539689, dt = 0.0017078381017851128
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 372.22 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.1%)
Info: cfl dt = 0.0017083438162299757                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2303e+05 | 65536 |      2 | 1.549e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.68601624969036 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.084065874177182, dt = 0.0017083438162299757
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 374.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.4%)
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.5990e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.157933329485715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08577421799341198, dt = 0.0017108556155540943
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 414.27 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.0%)
Info: cfl dt = 0.0017086170733692776                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3683e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.053360288054314 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08748507360896607, dt = 0.0017086170733692776
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1963.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 453.38 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.7%)
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.5989e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.16437591105146 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08919369068233535, dt = 0.001704148632575851
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 429.23 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.2%)
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.6118e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.17144155678712 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0908978393149112, dt = 0.0017028566622987406
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 378.23 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.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    | 4.5168e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.250057631271034 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09260069597720995, dt = 0.001703642191318931
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 380.56 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.4%)
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.5691e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.758987737939876 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09430433816852887, dt = 0.001705962546690105
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (0.3%)
   patch tree reduce : 1733.00 ns (0.1%)
   gen split merge   : 891.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 1697.76 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.8%)
Info: cfl dt = 0.0017034728706475893                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5398e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.54285277636812 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09601030071521897, dt = 0.0017034728706475893
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 389.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.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.5392e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.47560588151765 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09771377358586657, dt = 0.0017003923869213546
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1021.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 418.85 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (63.3%)
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.5761e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.74326089727032 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09941416597278792, dt = 0.0016996820181639789
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 17.17 us   (4.0%)
   LB compute        : 393.73 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (62.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.5238e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.23698890422982 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1011138479909519, dt = 0.001700546949989772
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 382.63 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.3%)
Info: cfl dt = 0.0017026162574477754                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6082e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.04675852972411 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10281439494094168, dt = 0.0017026162574477754
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 390.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.2%)
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.6779e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.751096392366264 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10451701119838945, dt = 0.0017002768026909297
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 416.09 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.4%)
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.7063e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.95666774692948 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10621728800108038, dt = 0.0016981265706875353
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1243.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 426.30 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.3%)
Info: cfl dt = 0.001697736282701456                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6429e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.309577169732194 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10791541457176791, dt = 0.001697736282701456
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 375.96 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.5%)
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.7568e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.361366754313536 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10961315085446936, dt = 0.0016985555549894058
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 366.76 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.1%)
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    | 4.7590e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.403504568179805 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11131170640945877, dt = 0.0017003248485142558
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 396.59 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.2%)
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.7888e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.72832859321646 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11301203125797303, dt = 0.001698461086538937
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 354.77 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.5%)
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.6873e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.732161470656564 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11471049234451197, dt = 0.0016969265772841695
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 386.48 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.4%)
Info: cfl dt = 0.0016966973860188487                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7026e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.835117933588414 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11640741892179614, dt = 0.0016966973860188487
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1703.00 ns (0.5%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 358.44 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.8%)
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.7715e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.471685574420015 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11810411630781499, dt = 0.0016974085466070425
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1332.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 380.72 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.4%)
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.8074e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.825213750512056 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11980152485442204, dt = 0.0016988582241135434
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (0.8%)
   patch tree reduce : 1883.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.1%)
   LB compute        : 692.60 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.4%)
Info: cfl dt = 0.0016977464607493596                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6358e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.261369454093526 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12150038307853558, dt = 0.0016977464607493596
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 397.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.1%)
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.6764e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.611653684784585 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12319812953928494, dt = 0.0016966110639823064
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 387.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.8%)
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.6617e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.44548521022406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12489474060326725, dt = 0.0016964559446988026
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 364.66 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.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.6245e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.095302817535234 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12659119654796605, dt = 0.001697040168812501
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 367.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.1%)
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.6174e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.043922141361215 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12828823671677855, dt = 0.0016981873838016466
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 371.65 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (63.4%)
Info: cfl dt = 0.00169772861864138                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7507e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.316683280587505 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1299864241005802, dt = 0.00169772861864138
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 392.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.3%)
Info: cfl dt = 0.0016968477262804024                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6293e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.17206820735113 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13168415271922157, dt = 0.0016968477262804024
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 356.35 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.8%)
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    | 4.6456e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.301798068481204 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13338100044550197, dt = 0.0016967287147737486
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.1%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 510.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 821.00 ns  (0.2%)
   LB compute        : 453.07 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.9%)
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.7261e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.048990097982525 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13507772916027572, dt = 0.0016971546656561034
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.1%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 435.35 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.4%)
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.6941e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.76226266953589 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1367748838259318, dt = 0.001698018200167691
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 1203.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 391.77 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.5%)
Info: cfl dt = 0.0016979543922550978                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6222e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.11388183703798 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1384729020260995, dt = 0.0016979543922550978
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.4%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 396.48 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.1%)
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.6395e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.27301296982388 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14017085641835458, dt = 0.0016972359111011633
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 360.14 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (66.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    | 4.7232e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.03521344351062 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14186809232945574, dt = 0.001697081404857013
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1263.00 ns (0.3%)
   LB compute        : 416.06 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.1%)
Info: cfl dt = 0.0016973449360672378                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5955e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.84121896877149 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14356517373431277, dt = 0.0016973449360672378
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 367.43 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.1%)
Info: cfl dt = 0.001697943269561946                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6504e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.35901283194242 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14526251867038, dt = 0.001697943269561946
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 396.13 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.1%)
Info: cfl dt = 0.001698396870397288                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7171e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.99687009495132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14696046193994194, dt = 0.001698396870397288
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 397.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.2%)
Info: cfl dt = 0.001697755879876424                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6321e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.215530912764926 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14865885881033924, dt = 0.001697755879876424
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 399.78 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.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    | 4.5791e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.70453344063213 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15035661469021566, dt = 0.0016975474753640188
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 374.95 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.4%)
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    | 4.6540e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.39773524348522 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15205416216557968, dt = 0.0016976726358584218
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 377.56 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (63.1%)
Info: cfl dt = 0.0016980593347007712                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6163e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.049406854081035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15375183480143811, dt = 0.0016980593347007712
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 404.00 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.9%)
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    | 4.5845e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.76322011495394 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15544989413613888, dt = 0.0016986681623133862
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 396.30 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.3%)
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.7201e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.04343137387476 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15714856229845228, dt = 0.001698491568394623
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 437.93 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.2%)
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.7568e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.38104030616031 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15884705386684692, dt = 0.0016982345701905392
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 435.53 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.6%)
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    | 4.6923e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.772542641392555 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16054528843703744, dt = 0.0016982273186220678
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 392.27 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (64.8%)
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.5639e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.57538365670251 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1622435157556595, dt = 0.0016984266379888343
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 405.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.0%)
Info: cfl dt = 0.0016988025019538699                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5000e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.98406257975944 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16394194239364834, dt = 0.0016988025019538699
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 408.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.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    | 4.2705e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.851167523845476 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1656407448956022, dt = 0.0016993446786721235
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 378.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.8%)
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    | 4.5935e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.87954314400098 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16734008957427432, dt = 0.0016991499464887646
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 407.46 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.7%)
Info: cfl dt = 0.0016990574943381979                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6762e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.64583993763194 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16903923952076308, dt = 0.0016990574943381979
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 409.25 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.6%)
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.6636e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.52639527173144 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17073829701510126, dt = 0.0016991220720931736
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1993.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 403.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.9%)
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.6282e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.19728326896514 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17243741908719443, dt = 0.001699317468632058
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 380.13 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (63.9%)
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.6306e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.225215423992715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17413673655582648, dt = 0.0016996449187329289
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1243.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 388.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.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.7446e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.29772188179767 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1758363814745594, dt = 0.0016997294942707286
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 428.45 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.6%)
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.6619e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.52800721045663 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17753611096883012, dt = 0.0016995643511617984
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.1%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 463.68 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.3%)
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.5674e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.64143078057726 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17923567531999193, dt = 0.0016995146248371955
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 404.58 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (11.9%)
Info: cfl dt = 0.0016995686921680029                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6446e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.36090799387982 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18093518994482913, dt = 0.0016995686921680029
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 409.74 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (69.2%)
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    | 4.6746e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.64239018134277 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18263475863699713, dt = 0.0016997202499088
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 392.96 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.0%)
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    | 4.6605e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.51461178248395 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18433447888690593, dt = 0.0016999668711730127
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 386.71 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.7%)
Info: cfl dt = 0.0017002080226618502                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6372e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.30282132239675 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18603444575807895, dt = 0.0017002080226618502
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 387.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.2%)
Info: cfl dt = 0.00170009730545073                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6286e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.22899839656749 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1877346537807408, dt = 0.00170009730545073
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 400.72 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.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.6343e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.27893119789556 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18943475108619154, dt = 0.0017000684276781116
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 382.37 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (12.6%)
Info: cfl dt = 0.0017001081816105067                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6016e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.973668106649306 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19113481951386965, dt = 0.0017001081816105067
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 399.76 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.6%)
Info: cfl dt = 0.001700215680423498                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6468e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.39606866702882 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19283492769548016, dt = 0.001700215680423498
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 386.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.02 us   (93.7%)
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.6414e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.349015939802094 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19453514337590366, dt = 0.001700394627228016
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 434.72 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.3%)
Info: cfl dt = 0.0017006626140353416                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6367e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.309115558317856 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19623553800313168, dt = 0.0017006626140353416
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 407.00 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.2%)
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.6285e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.239293934259464 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19793620061716702, dt = 0.0017006239404694168
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 426.87 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.0%)
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.7447e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.324066599914644 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19963682455763643, dt = 0.00036317544236358357
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.1%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 437.06 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.0%)
Info: cfl dt = 0.00170057499260955                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2351e+05 | 65536 |      2 | 1.547e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.448854883805758 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 76.137307617 (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  18.79 ms                            [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.88 us   (78.4%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1654.00 ns (0.3%)
   patch tree reduce : 912.00 ns  (0.1%)
   gen split merge   : 752.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.1%)
   LB compute        : 587.67 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 13.57 us   (2.2%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (65.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (0.3%)
   patch tree reduce : 490.00 ns  (0.1%)
   gen split merge   : 390.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 271.00 ns  (0.0%)
   LB compute        : 540.38 us  (98.5%)
   LB move op cnt    : 0
   LB apply          : 2.07 us    (0.4%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (62.9%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (0.3%)
   patch tree reduce : 431.00 ns  (0.1%)
   gen split merge   : 370.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 290.00 ns  (0.1%)
   LB compute        : 497.64 us  (98.4%)
   LB move op cnt    : 0
   LB apply          : 1973.00 ns (0.4%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running none hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.83 us    (1.0%)
   patch tree reduce : 912.00 ns  (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 391.00 ns  (0.1%)
   LB compute        : 488.26 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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    | 2.9147e+05 | 65536 |      2 | 2.248e-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 :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.2%)
   LB compute        : 485.28 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 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    | 4.8888e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.803344672901204 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017055802906684391, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.1%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 490.48 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (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.9802e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.659698106908856 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034111605813368783, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 477.48 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (65.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9372e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.256682158510856 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005116740872005318, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.1%)
   patch tree reduce : 1653.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 486.52 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9321e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.209071737304576 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0068223211626737565, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.1%)
   patch tree reduce : 1743.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 498.92 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9252e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.14440351284569 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008527901453342196, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 598.65 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.9123e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.02366334851895 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010233481744010635, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 415.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (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    | 4.9197e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.09316505483093 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011939062034679074, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.2%)
   patch tree reduce : 2.06 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 451.10 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.9479e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.35748859491237 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013644642325347513, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 403.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9979e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.82558944445097 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015350222616015952, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 410.10 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9494e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.37093870597246 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017055802906684393, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 405.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0313e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.137957876676 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01876138319735283, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (0.8%)
   patch tree reduce : 1593.00 ns (0.2%)
   gen split merge   : 962.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 713.09 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0025e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.86887192304216 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02046696348802127, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.4%)
   LB compute        : 372.24 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.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.9479e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.35694505493199 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02217254377868971, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 438.75 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0051e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.892688436195364 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02387812406935815, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 375.99 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (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.9344e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.230271876409304 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025583704360026587, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 406.30 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4922e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.08773761118031 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027289284650695026, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.4%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 355.66 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9706e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.57011239523293 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028994864941363465, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 413.73 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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.9561e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.43355359110142 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030700445232031904, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 407.74 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0281e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.10842439249259 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.032406025522700346, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 395.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0369e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.19129259807533 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034111605813368785, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 371.65 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.9835e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.69081266345354 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.035817186104037224, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 401.59 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.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.9938e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.78688129814111 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03752276639470566, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1243.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 369.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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    | 5.0227e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.057813405541815 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0392283466853741, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1673.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 376.01 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (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.9985e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.83136949067155 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04093392697604254, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 409.53 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0823e+05 | 65536 |      2 | 1.289e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.6160863264208 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04263950726671098, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 435.02 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8969e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.87894604981227 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04434508755737942, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 445.63 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9787e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.64572384875716 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04605066784804786, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 401.42 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0977e+05 | 65536 |      2 | 1.286e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.76033897095028 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0477562481387163, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 420.80 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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    | 5.0382e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.20314901636892 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.049461828429384735, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 380.78 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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    | 5.0049e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.89064577568284 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051167408720053174, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 371.77 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (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.9926e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.775643903729076 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05287298901072161, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 429.39 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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    | 5.0430e+05 | 65536 |      2 | 1.300e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.247891381092174 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05457856930139005, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 386.06 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.5%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0059e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.90028766421455 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05628414959205849, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 397.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.8%)
Info: cfl dt = 0.0017055802906684402                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9793e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.651468788844994 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05798972988272693, dt = 0.0017055802906684402
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 401.74 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 10.41 us   (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.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    | 5.0554e+05 | 65536 |      2 | 1.296e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.36412475997293 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05969531017339537, dt = 0.0017055802906684474
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 356.46 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.7%)
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    | 5.1072e+05 | 65536 |      2 | 1.283e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.849227108694095 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.061400890464063815, dt = 0.0017055802906684925
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 418.36 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.8%)
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    | 5.0195e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.02800490409634 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0631064707547323, dt = 0.00170558029066872
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 393.72 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.5%)
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    | 5.0191e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.02419794449024 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06481205104540103, dt = 0.001705580290669701
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1582.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 439.86 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (63.5%)
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.9668e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.53382588656716 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06651763133607072, dt = 0.0017055802906734301
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 445.70 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.1%)
Info: cfl dt = 0.0017055802906861533                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9565e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.437219505956655 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06822321162674415, dt = 0.0017055802906861533
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 442.83 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.0%)
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.8864e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.78049494431966 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0699287919174303, dt = 0.0017055802907257247
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 417.90 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.6%)
Info: cfl dt = 0.001705580290839242                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9720e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.58306417611378 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07163437220815602, dt = 0.001705580290839242
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 413.36 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.5%)
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    | 5.0646e+05 | 65536 |      2 | 1.294e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.450644429689824 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07333995249899526, dt = 0.0017055802911424558
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 382.09 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.9%)
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.9866e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.719468498674615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07504553279013772, dt = 0.0017055802919024247
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 408.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (69.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.9865e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.71828549581198 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07675111308204015, dt = 0.0017055802937012742
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 389.87 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.4%)
Info: cfl dt = 0.0017055802977442157                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9892e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.74424833556032 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07845669337574142, dt = 0.0017055802977442157
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 361.01 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.4%)
Info: cfl dt = 0.0017055803064120302                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0873e+05 | 65536 |      2 | 1.288e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.66274208657174 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08016227367348563, dt = 0.0017055803064120302
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 397.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.4%)
Info: cfl dt = 0.0017055803242095387                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0746e+05 | 65536 |      2 | 1.291e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.54440912912278 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08186785397989767, dt = 0.0017055803242095387
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 408.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (63.9%)
Info: cfl dt = 0.0017055803593290075                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9585e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.45640822195317 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0835734343041072, dt = 0.0017055803593290075
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 414.21 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.3%)
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    | 5.0171e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.00548878773042 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08527901466343621, dt = 0.001705580426131254
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 439.72 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.3%)
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.9237e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.13061366782604 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08698459508956746, dt = 0.001705580548945427
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 418.25 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.9%)
Info: cfl dt = 0.0017055807676960603                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0065e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.9063720532595 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08869017563851289, dt = 0.0017055807676960603
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1502.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 433.38 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.0%)
Info: cfl dt = 0.0017055811459746005                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0332e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.15612063808735 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09039575640620895, dt = 0.0017055811459746005
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 444.34 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.4%)
Info: cfl dt = 0.0017055817822700953                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0084e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.92432031167492 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09210133755218355, dt = 0.0017055817822700953
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.3%)
   patch tree reduce : 1562.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 453.60 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.6%)
Info: cfl dt = 0.0017055828251449233                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0139e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.975626857893566 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09380691933445365, dt = 0.0017055828251449233
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 389.15 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.5%)
Info: cfl dt = 0.0017055844931689                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9430e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.31159828146986 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09551250215959857, dt = 0.0017055844931689
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 387.70 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.9%)
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.9984e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.829872221431486 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09721808665276747, dt = 0.0017055871003907653
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1512.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 415.04 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.4%)
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    | 5.0200e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.0330832126531 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09892367375315823, dt = 0.0017055910880134828
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 417.83 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.8%)
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    | 5.0345e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.16872381790737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10062926484117171, dt = 0.0017055970627363154
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.5%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 356.41 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.7%)
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.9995e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.84059682111847 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10233486190390803, dt = 0.0017056058419262718
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 418.19 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.7%)
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    | 5.0237e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.06799801295026 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10404046774583431, dt = 0.0017056185053868486
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 400.24 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.3%)
Info: cfl dt = 0.0017056364530162373                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8698e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.626591897939655 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10574608625122116, dt = 0.0017056364530162373
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 375.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (63.8%)
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.9766e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.62757869402099 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10745172270423739, dt = 0.0017056614671146274
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 375.39 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.8%)
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.9706e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.57191631021953 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10915738417135201, dt = 0.001705695777546076
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 410.83 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.1%)
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    | 5.0246e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.07842869207122 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11086307994889809, dt = 0.0017057421274285923
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.4%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 419.50 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.9%)
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    | 5.0966e+05 | 65536 |      2 | 1.286e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.75489080629328 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11256882207632668, dt = 0.0017058038365661728
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.1%)
   LB compute        : 553.17 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (67.8%)
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    | 5.0846e+05 | 65536 |      2 | 1.289e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.643725000243194 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11427462591289285, dt = 0.0017058848594990496
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 375.09 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.5%)
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.9951e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.80798002331866 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1159805107723919, dt = 0.0017059898348795238
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1914.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 438.82 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.9%)
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.9905e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.76707035512646 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11768650060727141, dt = 0.0017061241229163568
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1273.00 ns (0.3%)
   LB compute        : 377.37 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.3%)
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.9876e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.74387050176639 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11939262473018777, dt = 0.0017062938278914004
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 369.93 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.5%)
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    | 5.0119e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.9766819660446 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12109891855807918, dt = 0.0017065058032390836
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 372.33 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.1%)
Info: cfl dt = 0.0017067676373724167                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9419e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.32608484713937 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12280542436131826, dt = 0.0017067676373724167
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 371.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.6%)
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    | 5.0273e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.13418186928245 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12451219199869068, dt = 0.001707087619297221
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.2%)
   LB compute        : 462.71 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (66.7%)
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    | 5.0950e+05 | 65536 |      2 | 1.286e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.77722809439801 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1262192796179879, dt = 0.0017074746840206113
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 399.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.6%)
Info: cfl dt = 0.0017079383387594703                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1050e+05 | 65536 |      2 | 1.284e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.88195739634573 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1279267543020085, dt = 0.0017079383387594703
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 416.47 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.3%)
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    | 5.0608e+05 | 65536 |      2 | 1.295e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.4805196778993 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12963469264076796, dt = 0.0017084885719139463
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 362.58 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.3%)
Info: cfl dt = 0.001709135747617399                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0933e+05 | 65536 |      2 | 1.287e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.80039804002763 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1313431812126819, dt = 0.001709135747617399
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.5%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 365.32 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.8%)
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    | 5.1296e+05 | 65536 |      2 | 1.278e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.159539241006456 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1330523169602993, dt = 0.001709890489345935
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 412.65 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (68.1%)
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    | 5.0462e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.39769935532048 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13476220744964523, dt = 0.0017107635565231255
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 450.13 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.2%)
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.5766e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.00863836732223 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13647297100616837, dt = 0.0017117657182650478
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.1%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 457.11 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.8%)
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    | 2.0746e+05 | 65536 |      2 | 3.159e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.50788878366802 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1381847367244334, dt = 0.0017129076283758878
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 413.39 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.2%)
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.8190e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.34346958422246 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1398976443528093, dt = 0.0017141997054442655
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.5%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 387.04 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (63.4%)
Info: cfl dt = 0.0017156520214412407                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4232e+05 | 65536 |      2 | 1.914e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.23428824644258 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14161184405825356, dt = 0.0017156520214412407
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 411.88 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.8%)
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.4035e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.49997469012406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1433274960796948, dt = 0.0017172742016303686
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 397.24 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.7%)
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    | 3.4869e+05 | 65536 |      2 | 1.880e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.89262623415882 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14504477028132517, dt = 0.0017190753379216185
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 415.76 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.7%)
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.9077e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.34397988150921 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1467638456192468, dt = 0.0017210639170878118
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 410.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.4%)
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.8383e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.74214483929831 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1484849095363346, dt = 0.0015150904636653806
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 387.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.8%)
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.8581e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.43213747288558 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 112.856782487 (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  3.37 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.97 us    (53.1%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (0.4%)
   patch tree reduce : 1022.00 ns (0.2%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 435.96 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.5%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1152.00 ns (0.3%)
   patch tree reduce : 451.00 ns  (0.1%)
   gen split merge   : 361.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 280.00 ns  (0.1%)
   LB compute        : 343.42 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 1984.00 ns (0.6%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.2%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1142.00 ns (0.3%)
   patch tree reduce : 360.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 280.00 ns  (0.1%)
   LB compute        : 375.77 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 2.03 us    (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 982.00 ns  (0.2%)
   gen split merge   : 572.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 661.00 ns  (0.2%)
   LB compute        : 404.39 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.1996e+05 | 65536 |      2 | 1.561e-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 :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.1%)
   patch tree reduce : 1703.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 473.29 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (71.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.7265e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.28249324452149 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017055802906684391, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1223.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 378.54 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (69.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.7043e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.07496268904928 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034111605813368783, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.0%)
   patch tree reduce : 1653.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 527.11 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1463e+05 | 65536 |      2 | 1.581e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.84657981802274 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005116740872005318, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 404.70 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7290e+05 | 65536 |      2 | 1.757e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.93705626616879 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0068223211626737565, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 417.59 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (64.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6451e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.51988985634534 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008527901453342196, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 429.85 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.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.8342e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.29200123734168 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010233481744010635, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1013.00 ns (0.2%)
   LB compute        : 400.05 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8381e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.32795954104483 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011939062034679074, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.5%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 369.24 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9706e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.56992625134444 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013644642325347513, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1632.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 378.09 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (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.8655e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.58525865392128 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015350222616015952, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 408.28 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8436e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.37952553989456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017055802906684393, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 410.12 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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    | 4.8815e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.7345565387444 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01876138319735283, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 488.13 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (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    | 4.8352e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.300829380540726 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02046696348802127, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 372.10 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.9324e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.21174512426406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02217254377868971, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 441.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8166e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.1265711143244 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02387812406935815, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 439.93 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.9321e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.20931690951378 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025583704360026587, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.36 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (71.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.9301e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.19041950272643 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027289284650695026, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.5%)
   patch tree reduce : 1754.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 368.03 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (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    | 5.0105e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.94382971954076 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028994864941363465, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 378.50 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 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.8620e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.55239401108645 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030700445232031904, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 432.09 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8333e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.28302257761343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.032406025522700346, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.9%)
   patch tree reduce : 1723.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 621.43 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.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.9485e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.36303392097184 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034111605813368785, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 370.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8485e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.42592532419384 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.035817186104037224, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 392.34 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.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.9845e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.69985360421528 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03752276639470566, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1233.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 397.67 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9635e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.50313674184906 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0392283466853741, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 500.18 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.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.7864e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.844163106711676 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04093392697604254, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 467.03 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.8521e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.459279781057525 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04263950726671098, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1824.00 ns (0.5%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 374.27 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8572e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.507086721074074 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04434508755737942, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 379.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8731e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.65607517401985 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04605066784804786, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 437.72 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (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    | 4.6851e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.89502006499758 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0477562481387163, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 1293.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 386.15 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.8629e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.561019696680944 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.049461828429384735, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 379.48 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8442e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.38519461075025 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051167408720053174, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 410.91 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.8755e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.67886099050956 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05287298901072161, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 387.87 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 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.8566e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.50141379813905 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05457856930139005, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1893.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 403.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8282e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.23532808738133 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05628414959205849, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 373.89 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (63.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8678e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.60638707152831 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05798972988272693, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 387.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8529e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.467209989525294 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05969531017339537, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 391.91 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9995e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.840281643068415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06140089046406381, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.2%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 445.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (73.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.8827e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.74604766143323 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06310647075473225, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.5%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 379.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8010e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.98037599420119 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06481205104540069, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 446.08 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0695e+05 | 65536 |      2 | 1.293e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.4960168817145 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06651763133606914, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 422.26 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1177e+05 | 65536 |      2 | 1.281e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.948228583901475 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06822321162673758, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.4%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 371.85 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.4%)
Info: cfl dt = 0.0017055802906684398                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1294e+05 | 65536 |      2 | 1.278e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.05737640684074 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06992879191740603, dt = 0.0017055802906684398
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 383.24 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.1%)
Info: cfl dt = 0.0017055802906684422                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1106e+05 | 65536 |      2 | 1.282e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.88174688893745 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07163437220807448, dt = 0.0017055802906684422
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.1%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 429.85 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.3%)
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.8691e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.61921906562073 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07333995249874292, dt = 0.0017055802906684504
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 436.02 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.1%)
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    | 4.8961e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.8712543631329 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07504553278941137, dt = 0.001705580290668476
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 429.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.2%)
Info: cfl dt = 0.001705580290668554                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9657e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.52407532113185 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07675111308007984, dt = 0.001705580290668554
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 406.89 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.6%)
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    | 4.8382e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.3290641632737 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0784566933707484, dt = 0.0017055802906687763
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 433.94 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.7%)
Info: cfl dt = 0.0017055802906693822                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8477e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.418583664256744 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08016227366141718, dt = 0.0017055802906693822
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 378.93 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.3%)
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    | 4.9018e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.92492265435034 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08186785395208655, dt = 0.001705580290670957
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 381.57 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.9%)
Info: cfl dt = 0.0017055802906748875                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9993e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.838800574694936 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08357343424275751, dt = 0.0017055802906748875
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 400.25 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.6%)
Info: cfl dt = 0.0017055802906843244                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8982e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.89181973905 (tsim/hr)                               [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0852790145334324, dt = 0.0017055802906843244
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 395.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (66.6%)
Info: cfl dt = 0.0017055802907061882                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8000e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.97156590540554 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08698459482411672, dt = 0.0017055802907061882
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1924.00 ns (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 393.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.9%)
Info: cfl dt = 0.0017055802907551792                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8672e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.6014120854903 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08869017511482291, dt = 0.0017055802907551792
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 383.85 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.0%)
Info: cfl dt = 0.0017055802908615709                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8048e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.01620700508626 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0903957554055781, dt = 0.0017055802908615709
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.04 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.1%)
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.8735e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.65962342810124 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09210133569643966, dt = 0.0017055802910859227
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (0.9%)
   patch tree reduce : 1573.00 ns (0.2%)
   gen split merge   : 1013.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 625.01 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (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.8855e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.77253630629637 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09380691598752558, dt = 0.0017055802915460889
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.1%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 432.38 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.6%)
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    | 4.8939e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.85076735236082 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09551249627907167, dt = 0.001705580292465543
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.3%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 384.82 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.0%)
Info: cfl dt = 0.0017055802942577123                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9295e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.18508392566252 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09721807657153722, dt = 0.0017055802942577123
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 410.24 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.8%)
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    | 4.9833e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.688987171541 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09892365686579493, dt = 0.001705580297669714
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 375.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (66.2%)
Info: cfl dt = 0.0017055803040218658                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8592e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.52618026290001 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10062923716346465, dt = 0.0017055803040218658
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 431.13 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.1%)
Info: cfl dt = 0.0017055803155982016                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7242e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.2616146304595 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10233481746748652, dt = 0.0017055803155982016
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.7%)
   patch tree reduce : 2.19 us    (0.2%)
   gen split merge   : 871.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 893.73 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.1%)
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.9763e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.622944770673115 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10404039778308471, dt = 0.0017055803362700298
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 426.49 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.2%)
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.8915e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.82860280354648 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10574597811935474, dt = 0.0017055803724717218
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.1%)
   patch tree reduce : 1673.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.2%)
   LB compute        : 458.95 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.8%)
Info: cfl dt = 0.001705580434698187                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8740e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.66426928451154 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10745155849182646, dt = 0.001705580434698187
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 393.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.5%)
Info: cfl dt = 0.0017055805397597833                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8990e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.898999983124305 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10915713892652465, dt = 0.0017055805397597833
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.5%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 376.77 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.3%)
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.9346e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.23235849593145 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11086271946628443, dt = 0.0017055807141157196
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1913.00 ns (0.3%)
   gen split merge   : 1273.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 591.36 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (75.0%)
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.9168e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.06586316544705 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11256830018040015, dt = 0.001705580998713724
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 403.09 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.3%)
Info: cfl dt = 0.001705581455893551                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9517e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.392320243505324 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11427388117911387, dt = 0.001705581455893551
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 383.90 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.8%)
Info: cfl dt = 0.0017055821790647279                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8763e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.68627134418117 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11597946263500743, dt = 0.0017055821790647279
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 399.17 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.7%)
Info: cfl dt = 0.0017055833060424421                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8893e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.80838070515932 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11768504481407216, dt = 0.0017055833060424421
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 396.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (65.1%)
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.8845e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.76291767208266 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1193906281201146, dt = 0.0017055850371140583
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 405.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.2%)
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.9242e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.134994789657924 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12109621315722865, dt = 0.0017055876591026123
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 397.29 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.7%)
Info: cfl dt = 0.001705591576878013                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7911e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.888119293015514 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12280180081633127, dt = 0.001705591576878013
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (0.8%)
   patch tree reduce : 1693.00 ns (0.2%)
   gen split merge   : 901.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.1%)
   LB compute        : 669.52 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.1%)
Info: cfl dt = 0.0017055973539212557                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9499e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.37585573456385 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12450739239320928, dt = 0.0017055973539212557
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (0.1%)
   patch tree reduce : 1813.00 ns (0.0%)
   gen split merge   : 871.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.0%)
   LB compute        : 9.69 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.1%)
Info: cfl dt = 0.0017056057636456693                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6921e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.96059656358501 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12621298974713052, dt = 0.0017056057636456693
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 397.67 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.6%)
Info: cfl dt = 0.00170561785319086                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8866e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.78347262848861 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1279185955107762, dt = 0.00170561785319086
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 393.15 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.1%)
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    | 5.0250e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.08066504582519 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12962421336396707, dt = 0.0017056350212945942
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 453.92 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.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    | 4.9363e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.24953779288717 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13132984838526165, dt = 0.0017056591115791786
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 408.23 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.5%)
Info: cfl dt = 0.0017056925221283386                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9416e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.29994162855543 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13303550749684084, dt = 0.0017056925221283386
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 390.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.3%)
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    | 5.0340e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.166950142330734 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1347412000189692, dt = 0.001705738331552196
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 407.00 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.0%)
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    | 5.0927e+05 | 65536 |      2 | 1.287e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.718161491509775 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13644693835052138, dt = 0.0017058004408294066
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 383.02 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.4%)
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    | 5.1139e+05 | 65536 |      2 | 1.282e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.918334931350984 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1381527387913508, dt = 0.0017058837290848479
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 405.28 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.4%)
Info: cfl dt = 0.0017059942201429112                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9679e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.55307464313284 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13985862252043563, dt = 0.0017059942201429112
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 381.50 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.4%)
Info: cfl dt = 0.0017061392552560747                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8573e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.519253306464215 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14156461674057855, dt = 0.0017061392552560747
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 357.63 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (65.9%)
Info: cfl dt = 0.0017063276659444774                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9071e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.9902131484814 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1432707559958346, dt = 0.0017063276659444774
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 416.47 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (65.6%)
Info: cfl dt = 0.0017065699395233122                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8671e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.62032200785188 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14497708366177908, dt = 0.0017065699395233122
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 398.15 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.0%)
Info: cfl dt = 0.0017068783687916485                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8955e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.89300118794405 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1466836536013024, dt = 0.0017068783687916485
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 380.66 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.1%)
Info: cfl dt = 0.0017072671766671043                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8362e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.344642011371185 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14839053197009405, dt = 0.0016094680299059416
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 412.02 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.4%)
Info: cfl dt = 0.0017077187297657632                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8644e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.00674104577285 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 125.068527199 (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.29 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (55.7%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (0.3%)
   patch tree reduce : 931.00 ns  (0.2%)
   gen split merge   : 1073.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 422.94 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (62.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1182.00 ns (0.3%)
   patch tree reduce : 330.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 271.00 ns  (0.1%)
   LB compute        : 365.61 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 1913.00 ns (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.3%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1122.00 ns (0.3%)
   patch tree reduce : 290.00 ns  (0.1%)
   gen split merge   : 370.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 251.00 ns  (0.1%)
   LB compute        : 320.22 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 1783.00 ns (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hll with only_last_step=False
Info: time since start : 125.23605239700001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.7%)
   patch tree reduce : 2.34 us    (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 455.76 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (70.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.5529e+05 | 65536 |      2 | 1.439e-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 :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 412.75 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.7433e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.44048218791869 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017055802906684391, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 434.98 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9016e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.92303041059284 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034111605813368783, dt = 0.0003388394186631216
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 374.99 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7857e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.90762805310342 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 125.854026802 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.00375, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (1.6%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 421.68 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (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    | 4.7861e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.84149037928369 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005455580290668439, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 418.39 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.8141e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.10320169106626 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007161160581336878, dt = 0.00033883941866312203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 420.09 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7788e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.894714728165608 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 126.33047353100001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0075, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (1.5%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 444.28 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7693e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.683807275060055 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009205580290668439, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 414.38 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8057e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.02519637543612 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010911160581336878, dt = 0.00033883941866312203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 390.34 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.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.7565e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.853368219249468 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 126.81256662800001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.01125, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 389.83 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.7885e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.86351541189835 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012955580290668438, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 401.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.6763e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.8120875896989 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014661160581336877, dt = 0.00033883941866312203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 409.10 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7589e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.8576816449632 (tsim/hr)                              [amr::RAMSES][rank=0]
Info: time since start : 127.29407190900001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.015, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1683.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 506.88 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 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.7395e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.40438065285788 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01670558029066844, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 424.97 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.7426e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.43385751792873 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018411160581336877, dt = 0.00033883941866312203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 408.98 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.5%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8238e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.978508371850422 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 127.77748702000001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.01875, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1654.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 526.29 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7308e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.32326723754241 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020455580290668438, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 411.25 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7713e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.70287103379169 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022161160581336877, dt = 0.00033883941866312203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 416.70 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.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.3514e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.09917280358594 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 128.27357951800002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0225, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (1.6%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 430.81 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (65.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7703e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.693517349596256 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024205580290668438, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 379.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (65.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8390e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.33668755771395 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025911160581336877, dt = 0.00033883941866312203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 394.53 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (63.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7705e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.879378870339233 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 128.758648153 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.02625, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (1.6%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 451.71 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (68.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7257e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.27559185048436 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027955580290668438, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 434.10 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (63.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7882e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.860550308710856 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029661160581336877, dt = 0.00033883941866312203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 405.83 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7498e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.840828639851123 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 129.23962532000002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.03, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1933.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 412.59 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (64.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7519e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.520372425687626 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03170558029066844, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 397.83 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8188e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.14740451597629 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03341116058133688, dt = 0.0003388394186631255
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.0%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 515.37 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7771e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.891579919706729 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 129.71748174200002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.03375, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1693.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 472.65 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (71.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.1896e+05 | 65536 |      2 | 1.564e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.252036859700404 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03545558029066844, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 397.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (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.8336e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.28641988684002 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03716116058133688, dt = 0.00033883941866311856
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 415.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.8111e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.954954555208994 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 130.214590026 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0375, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 443.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (63.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7473e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.47803011607482 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03920558029066844, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 380.65 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7277e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.293857626156786 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.040911160581336876, dt = 0.00033883941866311856
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 390.71 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (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.6082e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.577231574527527 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 130.700945195 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.041249999999999995, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 402.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (63.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6041e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.135872348939564 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.042955580290668434, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 386.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (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    | 4.6516e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.58082927001615 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04466116058133687, dt = 0.0003388394186631255
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 1203.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 433.11 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7953e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.92541294979126 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 131.18947740800002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.045, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 523.97 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.8092e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.0576800491176 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04670558029066844, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 390.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8197e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.15605748625743 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.048411160581336876, dt = 0.0003388394186631255
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 456.97 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7968e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.928215960305824 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 131.66704611400002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.04875, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (1.5%)
   patch tree reduce : 2.10 us    (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 468.84 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8349e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.29798531283837 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05045558029066844, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 462.79 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.2546e+05 | 65536 |      2 | 1.540e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.861429181124 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05216116058133688, dt = 0.00033883941866311856
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 1302.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 438.04 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (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.7833e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.903113474005888 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 132.16176765900002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0525, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (1.5%)
   patch tree reduce : 2.01 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 449.04 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.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.7160e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.1845860910709 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05420558029066844, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 434.43 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (61.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8380e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.32716816803879 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.055911160581336876, dt = 0.00033883941866311856
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 453.44 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0130e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.330683974485655 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 132.635382107 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.056249999999999994, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 435.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7971e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.944246675675494 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05795558029066843, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 407.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8021e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.9908374733625 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05966116058133687, dt = 0.0003388394186631255
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 414.15 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3157e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.032876192350013 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 133.127135028 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.06, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.50 us    (1.6%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 434.88 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8134e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.0967105232895 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06170558029066844, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 377.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8038e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.00686228446859 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06341116058133688, dt = 0.0003388394186631255
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 387.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.8579e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.042024274569426 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 133.60182259200002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.06375, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 390.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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    | 4.8370e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.31791366500522 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06545558029066845, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 1293.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 382.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.4%)
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    | 4.7768e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.754328622219276 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06716116058133689, dt = 0.0003388394186631116
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.2%)
   patch tree reduce : 1532.00 ns (0.3%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 456.67 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (62.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    | 4.8216e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.974458509617016 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 134.076382802 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0675, dt = 0.0017055802906684398
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.60 us    (1.7%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 413.92 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (62.9%)
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.8194e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.15282082536132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06920558029066845, dt = 0.0017055802906684417
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 404.50 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.9%)
Info: cfl dt = 0.0017055802906684474                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6692e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.74631485502058 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0709111605813369, dt = 0.00033883941866309775
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 404.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.5%)
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.5918e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.546725180020848 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 134.561776019 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.07125, dt = 0.00170558029066845
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 440.27 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.0%)
Info: cfl dt = 0.0017055802906684727                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8386e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.33263372267732 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07295558029066844, dt = 0.0017055802906684727
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 442.47 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.6%)
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.8167e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.12759993976877 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07466116058133691, dt = 0.00033883941866308387
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 397.95 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.9%)
Info: cfl dt = 0.0017055802906685636                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8259e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.982368880789927 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 135.050696399 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.075, dt = 0.0017055802906685636
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 433.35 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.9%)
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.8305e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.25726911240253 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07670558029066855, dt = 0.0017055802906687785
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 415.10 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.0%)
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.7952e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.92656816057707 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07841116058133733, dt = 0.00033883941866266754
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 496.87 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (71.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.8890e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.099825019770973 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 135.524420693 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.07875, dt = 0.0017055802906695474
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (1.4%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 464.48 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (65.4%)
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.9526e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.401226328919186 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08045558029066954, dt = 0.001705580290671223
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.7%)
   patch tree reduce : 1432.00 ns (0.2%)
   gen split merge   : 841.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.1%)
   LB compute        : 709.13 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.0%)
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.7995e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.96679430862515 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08216116058134076, dt = 0.00033883941865922584
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.5%)
   patch tree reduce : 1412.00 ns (0.4%)
   gen split merge   : 1223.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 370.84 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.6%)
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.8639e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.053171876867562 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 135.995779023 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.08249999999999999, dt = 0.0017055802906766546
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 407.67 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.2%)
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.8625e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.55713927214234 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08420558029067665, dt = 0.0017055802906876466
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 381.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.3%)
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.8521e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.45913135638284 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0859111605813643, dt = 0.0003388394186356891
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1574.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 440.63 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (66.5%)
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.8182e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.968047798089954 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 136.467522914 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.08625, dt = 0.001705580290720382
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (1.6%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 454.28 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.5%)
Info: cfl dt = 0.0017055802907824482                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8451e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.39378762639168 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08795558029072037, dt = 0.0017055802907824482
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 413.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.8%)
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.8904e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.81860098987946 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08966116058150282, dt = 0.0003388394184971749
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 382.98 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.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.8431e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.014458061924325 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 136.939483379 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.09, dt = 0.0017055802909539985
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.5%)
   patch tree reduce : 1653.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 454.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (68.2%)
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.8714e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.640677535356154 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09170558029095399, dt = 0.001705580291260901
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 399.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.3%)
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.8643e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.57413536200149 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0934111605822149, dt = 0.0003388394177851056
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.22 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.4%)
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.7976e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.929762733161542 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 137.411496803 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.09375, dt = 0.0017055802920548182
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 410.71 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.5%)
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.8243e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.19942208442905 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09545558029205482, dt = 0.0017055802934029458
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 381.08 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.4%)
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.8382e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.32892870684307 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09716116058545776, dt = 0.0003388394145422413
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 370.15 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.9%)
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.8235e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.97802902982375 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 137.886689581 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0975, dt = 0.0017055802966894906
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 407.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.9%)
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.8897e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.81147279675988 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0992055802966895, dt = 0.0017055803020129441
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.1%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 480.39 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.1%)
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.8973e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.8827069349674 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10091116059870243, dt = 0.0003388394012975582
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 543.39 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.4%)
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.6633e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.679830185424048 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 138.362490235 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.10124999999999999, dt = 0.0017055803143136746
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.6%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 422.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.2%)
Info: cfl dt = 0.001705580333398912                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8288e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.24127348865175 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10295558031431366, dt = 0.001705580333398912
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 411.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.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.5141e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.29247042019482 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10466116064771258, dt = 0.000338839352287415
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 372.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.1%)
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.8072e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.947549558771396 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 138.84639478 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.105, dt = 0.0017055803753998516
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 440.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.9%)
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.8575e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.50992867244819 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10670558037539984, dt = 0.001705580438043695
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (0.7%)
   patch tree reduce : 1522.00 ns (0.2%)
   gen split merge   : 761.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.1%)
   LB compute        : 767.52 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.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    | 4.7749e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.73582258828165 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10841116081344354, dt = 0.0003388391865564583
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 401.88 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (64.4%)
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.9015e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.123124623560747 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 139.31789656 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.10875, dt = 0.0017055805698800715
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 454.60 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.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.9193e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.08936498897851 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11045558056988007, dt = 0.0017055807594724872
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 428.80 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.1%)
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    | 4.8865e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.7819254950657 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11216116132935255, dt = 0.00033883867064743445
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 369.77 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.4%)
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    | 4.9330e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.181716420484403 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 139.78474747200002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.11249999999999999, dt = 0.0017055811423667506
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.9%)
   patch tree reduce : 2.02 us    (0.3%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.1%)
   LB compute        : 743.93 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (72.0%)
Info: cfl dt = 0.001705581674665527                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8530e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.46807239880895 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11420558114236674, dt = 0.001705581674665527
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 396.93 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
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.8909e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.82289052961105 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11591116281703227, dt = 0.0003388371829677189
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 356.89 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.5%)
Info: cfl dt = 0.0017055827093286767                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0194e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.34263305130657 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 140.25231780500002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.11624999999999999, dt = 0.0017055827093286767
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (1.6%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 429.92 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.4%)
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.8466e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.408438732480114 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11795558270932867, dt = 0.0017055841029076466
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 418.80 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.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.8658e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.588211021115455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11966116681223632, dt = 0.0003388331877636763
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 415.29 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.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    | 4.8709e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.066089351820969 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 140.722353684 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.12, dt = 0.001705586716627705
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 435.24 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.8%)
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.8648e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.57859469254932 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1217055867166277, dt = 0.00170559013387867
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 431.45 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.9%)
Info: cfl dt = 0.0017055951519962195                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8075e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.0421743699893 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12341117685050637, dt = 0.0003388231494936278
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 391.72 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.2%)
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.7873e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.910209332054622 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 141.194957569 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.12375, dt = 0.001705596331541383
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.39 us    (1.7%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 424.61 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (68.6%)
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.8212e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.17024503719599 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12545559633154138, dt = 0.0017056042100471686
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 378.15 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.9%)
Info: cfl dt = 0.0017056154737851938                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7943e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.918176093816776 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12716120054158855, dt = 0.00033879945841144843
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 403.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.2%)
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.7741e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.884981745147696 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 141.67253071800002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.1275, dt = 0.0017056180527650242
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 433.20 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.2%)
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.8856e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.77460925182992 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12920561805276504, dt = 0.0017056351863912094
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.51 us   (5.0%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 397.92 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.9%)
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.7934e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.911395861972 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13091125323915626, dt = 0.00033874676084375
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 407.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.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.8102e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.95085486720177 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 142.144951418 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.13125, dt = 0.0017056643967931814
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (1.7%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 406.91 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.5%)
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.8517e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.45801927348442 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13295566439679318, dt = 0.0017056996427259861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 402.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.2%)
Info: cfl dt = 0.0017057475807917397                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4681e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.86509435164625 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13466136403951917, dt = 0.00033863596048083755
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 1352.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.86 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.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    | 4.8638e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.047618334560896 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 142.62959694 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.135, dt = 0.0017057580261110798
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (1.6%)
   patch tree reduce : 2.38 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 418.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.7%)
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.8654e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.58847444274491 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1367057580261111, dt = 0.0017058267759265753
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 411.40 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.7%)
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.8162e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.12936327945232 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13841158480203766, dt = 0.0003384151979623218
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 397.83 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.9%)
Info: cfl dt = 0.0017059375494748695                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4346e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.243861677485539 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 143.11632915500002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.13874999999999998, dt = 0.0017059375494748695
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 407.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (67.5%)
Info: cfl dt = 0.0017060649740358817                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8695e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.63175985484214 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14045593754947486, dt = 0.0017060649740358817
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 376.32 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (62.0%)
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.8556e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.50556663660028 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14216200252351074, dt = 0.0003379974764892435
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 377.10 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (62.8%)
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.8632e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.029398163124691 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 143.58880810600002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.1425, dt = 0.0017062648765051938
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 414.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.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.8106e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.088809355449605 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14420626487650517, dt = 0.0017064897180124724
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 449.92 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.2%)
Info: cfl dt = 0.0017067754813477338                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8605e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.56229674343981 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14591275459451764, dt = 0.00033724540548235593
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 395.95 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (63.2%)
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.7761e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.847873738185038 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 144.064756722 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.14625, dt = 0.0017068334296343095
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 492.95 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.7%)
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.9153e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.08530840174376 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1479568334296343, dt = 0.0017072117966448453
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 444.23 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.0%)
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.8088e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.097026727543785 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14966404522627916, dt = 0.0003359547737208368
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 396.90 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.0%)
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.6812e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.638965944249072 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 144.548499642 (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  3.04 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (59.0%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
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 : 951.00 ns  (0.2%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 404.09 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (63.3%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1313.00 ns (0.4%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 290.00 ns  (0.1%)
   LB compute        : 342.09 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 1984.00 ns (0.6%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (60.4%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1192.00 ns (0.3%)
   patch tree reduce : 440.00 ns  (0.1%)
   gen split merge   : 390.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 301.00 ns  (0.1%)
   LB compute        : 333.36 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 1814.00 ns (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1202.00 ns (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 391.00 ns  (0.1%)
   LB compute        : 397.18 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (61.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7125e+05 | 65536 |      2 | 1.391e-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.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 387.26 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.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.6529e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.5931287547863 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017055802906684391, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 403.59 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5321e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.46135005720844 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034111605813368783, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 395.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7168e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.19163916105492 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005116740872005318, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 428.14 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6411e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.482941658553734 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0068223211626737565, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 403.15 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (63.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6341e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.41730322880383 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008527901453342196, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.65 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.5%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6283e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.362762613733125 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010233481744010635, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 403.40 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (63.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6799e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.846170629228624 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011939062034679074, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 378.19 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (63.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6576e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.63699627348569 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013644642325347513, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 374.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5575e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.69978720867132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015350222616015952, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 385.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6846e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.889753842569995 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017055802906684393, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 413.47 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.6054e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.14860143430885 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01876138319735283, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 386.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5756e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.86882152404759 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02046696348802127, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (0.3%)
   patch tree reduce : 1603.00 ns (0.1%)
   gen split merge   : 881.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.1%)
   LB compute        : 1702.19 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (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.4810e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.982846566424435 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02217254377868971, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 413.32 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6792e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.83928123132489 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02387812406935815, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (0.5%)
   patch tree reduce : 1704.00 ns (0.2%)
   gen split merge   : 862.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 1071.86 us (98.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.6519e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.58366009535669 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025583704360026587, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.3%)
   patch tree reduce : 1542.00 ns (0.1%)
   gen split merge   : 1012.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 1694.55 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.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.3355e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.61954792293816 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027289284650695026, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 382.47 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6841e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.88512152787066 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028994864941363465, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 387.86 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6438e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.5078098497233 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030700445232031904, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 388.50 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6650e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.70644222481058 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.032406025522700346, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 388.45 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6571e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.632903954167325 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034111605813368785, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 371.67 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (63.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6943e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.981271086619415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.035817186104037224, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 388.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (64.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6774e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.82309198652913 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03752276639470566, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 408.23 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (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.7005e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.0387899684963 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0392283466853741, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 351.71 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7008e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.041780744089294 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04093392697604254, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 389.97 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (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.6417e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.48823021155485 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04263950726671098, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 386.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6621e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.6795224597479 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04434508755737942, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 396.48 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6863e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.9062080776439 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04605066784804786, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 408.42 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (65.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6932e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.97035935469851 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0477562481387163, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 413.72 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6324e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.40080132555138 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.049461828429384735, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 399.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5972e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.07153752023934 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051167408720053174, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.4%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 353.22 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.6664e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.7199396141431 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05287298901072161, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 413.08 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7438e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.44500150102043 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05457856930139005, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.3%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 379.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6469e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.53677881197512 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05628414959205849, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1193.00 ns (0.3%)
   LB compute        : 400.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.6228e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.31091701224819 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05798972988272693, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 402.57 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6245e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.3274695539597 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05969531017339537, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 422.76 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6369e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.442866634090976 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06140089046406381, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 389.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6192e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.27750697944616 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06310647075473225, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 355.84 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.8257e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.211854903701145 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06481205104540069, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 419.93 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.7499e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.50194777566604 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06651763133606914, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.0%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 461.12 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0954e+05 | 65536 |      2 | 1.600e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.36973609088574 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06822321162673758, dt = 0.0017055802906684391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.0%)
   patch tree reduce : 1693.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 535.42 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (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    | 4.3717e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.95843814376529 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06992879191740603, dt = 0.0017055802906684398
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 386.77 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.1%)
Info: cfl dt = 0.0017055802906684422                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6106e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.19684465560301 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07163437220807448, dt = 0.0017055802906684422
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 398.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.2%)
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.5506e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.634668527907216 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07333995249874292, dt = 0.0017055802906684504
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1001.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 384.41 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.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    | 4.6461e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.529329898770754 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07504553278941137, dt = 0.0017055802906684762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 413.04 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.2%)
Info: cfl dt = 0.0017055802906685545                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4915e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.08069579028367 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07675111308007984, dt = 0.0017055802906685545
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 439.59 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (71.1%)
Info: cfl dt = 0.001705580290668778                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7649e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.64288721233217 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0784566933707484, dt = 0.001705580290668778
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 380.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.3%)
Info: cfl dt = 0.001705580290669386                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6519e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.58417550538987 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08016227366141718, dt = 0.001705580290669386
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 389.83 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.7%)
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.6662e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.717527454029586 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08186785395208657, dt = 0.001705580290670967
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 376.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.9%)
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.6820e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.86552586816122 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08357343424275754, dt = 0.0017055802906749116
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 442.07 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (63.7%)
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.6658e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.71357655672383 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08527901453343245, dt = 0.0017055802906843828
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 406.17 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (66.4%)
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.6750e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.80061222141041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08698459482411683, dt = 0.001705580290706324
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.3%)
   gen split merge   : 1303.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.3%)
   LB compute        : 498.64 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (71.2%)
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.6840e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.885015825484594 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08869017511482315, dt = 0.0017055802907554839
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1914.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 406.02 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.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.6175e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.26178112341791 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09039575540557863, dt = 0.0017055802908622375
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.4%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 400.37 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (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.7007e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.040632784021824 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09210133569644087, dt = 0.001705580291087342
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 386.97 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (62.1%)
Info: cfl dt = 0.0017055802915490362                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6998e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.03266344307136 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09380691598752822, dt = 0.0017055802915490362
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 438.49 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.0%)
Info: cfl dt = 0.001705580292471517                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6256e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.3373692466588 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09551249627907725, dt = 0.001705580292471517
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 2.23 us    (0.5%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 426.03 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.0%)
Info: cfl dt = 0.0017055802942695382                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5757e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.86996612761464 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09721807657154877, dt = 0.0017055802942695382
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1814.00 ns (0.5%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 382.64 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.5%)
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.5769e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.881360612892976 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0989236568658183, dt = 0.0017055802976926005
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 18.80 us   (4.0%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 431.09 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (66.4%)
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.2342e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.66997534891393 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10062923716351091, dt = 0.0017055803040652024
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.5%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 371.43 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.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.5203e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.35114863018389 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10233481746757611, dt = 0.0017055803156785462
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 418.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.7%)
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.5699e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.8155057857745 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10404039778325466, dt = 0.0017055803364159749
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1823.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 385.07 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.4%)
Info: cfl dt = 0.0017055803727316448                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5360e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.498176298226255 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10574597811967064, dt = 0.0017055803727316448
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.1%)
   patch tree reduce : 2.05 us    (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 472.37 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.1%)
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.5474e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.60508145379025 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10745155849240229, dt = 0.0017055804351523301
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 445.52 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.5%)
Info: cfl dt = 0.0017055805405387032                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6060e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.15340530360116 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10915713892755462, dt = 0.0017055805405387032
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 396.54 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.2%)
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.5202e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.35002988419417 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11086271946809333, dt = 0.0017055807154278896
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.3%)
   LB compute        : 404.90 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.9%)
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.6496e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.562362948480875 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11256830018352122, dt = 0.0017055810008860168
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 378.72 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.2%)
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.4659e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.840887660062414 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11427388118440723, dt = 0.0017055814594294475
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 388.17 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.5%)
Info: cfl dt = 0.0017055821847263826                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6010e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.106924512174 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11597946264383668, dt = 0.0017055821847263826
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 383.47 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.2%)
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.5628e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.74900156193625 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11768504482856307, dt = 0.001705583314964165
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 387.41 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.4%)
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.5927e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.02877274498593 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11939062814352723, dt = 0.0017055850509562034
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 408.75 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.5%)
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.6216e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.300132203753016 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12109621319448344, dt = 0.001705587680256208
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 394.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.9%)
Info: cfl dt = 0.001705591608731515                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5735e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.84988587261161 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12280180087473964, dt = 0.001705591608731515
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 431.72 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.8%)
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.6289e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.368953946862945 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12450739248347116, dt = 0.001705597401201249
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 431.93 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.9%)
Info: cfl dt = 0.0017056058328428956                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6235e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.3185291141206 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12621298988467242, dt = 0.0017056058328428956
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 401.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.4%)
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.5779e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.89153998767221 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12791859571751532, dt = 0.0017056179530811249
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 424.49 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.2%)
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.6849e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.89411002762825 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12962421367059646, dt = 0.001705635163560412
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 415.83 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.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.6799e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.84762041228181 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13132984883415685, dt = 0.001705659311531861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 450.61 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.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.6106e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.19864420167102 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1330355081456887, dt = 0.001705692799520938
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 379.34 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.1%)
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.5781e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.89476581276237 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13474120094520964, dt = 0.0017057387114605878
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1133.00 ns (0.3%)
   LB compute        : 410.22 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.6%)
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.5767e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.88313507686922 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13644693965667024, dt = 0.0017058009545611527
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 377.53 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (65.3%)
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.3679e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.92809537889605 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1381527406112314, dt = 0.001705884415052715
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1753.00 ns (0.5%)
   gen split merge   : 1223.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 366.65 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.5%)
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.5680e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.804942902033396 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1398586250262841, dt = 0.0017059951246116464
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 398.71 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.1%)
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.5667e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.79626601234559 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14156462015089574, dt = 0.0017061404328372685
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 1203.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 384.02 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.7%)
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.6078e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.18512207282159 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.143270760583733, dt = 0.0017063291796756363
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 413.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.9%)
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.5480e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.629390413238916 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14497708976340865, dt = 0.0017065718603250122
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.5%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 375.29 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.0%)
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.5252e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.421533391413305 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14668366162373367, dt = 0.001706880774053235
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.3%)
   LB compute        : 379.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.2%)
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.6249e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.36344741237584 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1483905423977869, dt = 0.0016094576022130935
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 384.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.7%)
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.4812e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.61841479475952 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 157.405168252 (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  18.07 ms                            [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.68 us   (77.2%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (0.3%)
   patch tree reduce : 811.00 ns  (0.1%)
   gen split merge   : 732.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 811.00 ns  (0.1%)
   LB compute        : 594.19 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.6%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (64.4%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (0.3%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 370.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 291.00 ns  (0.0%)
   LB compute        : 588.33 us  (98.6%)
   LB move op cnt    : 0
   LB apply          : 2.02 us    (0.3%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (62.2%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1954.00 ns (0.4%)
   patch tree reduce : 460.00 ns  (0.1%)
   gen split merge   : 380.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 281.00 ns  (0.1%)
   LB compute        : 515.26 us  (98.4%)
   LB move op cnt    : 0
   LB apply          : 1974.00 ns (0.4%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running none hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.91 us    (1.7%)
   patch tree reduce : 2.07 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 550.70 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (58.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    | 2.6951e+05 | 65536 |      2 | 2.432e-01 | 0.0% |   1.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 :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.1%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 486.29 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (66.2%)
Info: cfl dt = 0.00012194328524833338                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9059e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3761030949676463 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00012527870714644892, dt = 0.00012194328524833338
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 481.02 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (64.7%)
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    | 5.0292e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3688205001475207 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0002472219923947823, dt = 0.00011872603833498025
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.3%)
   patch tree reduce : 2.23 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 471.17 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.5%)
Info: cfl dt = 0.00011582136182458723                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0101e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2675065428181 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00036594803072976254, dt = 0.00011582136182458723
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1964.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 423.47 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.9%)
Info: cfl dt = 0.00011331937527520993                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9593e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1552373122456894 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00048176939255434976, dt = 0.00011331937527520993
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 408.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.3%)
Info: cfl dt = 0.00011118831923885228                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9907e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.106620759199298 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005950887678295597, dt = 0.00011118831923885228
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1554.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 372.53 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.6%)
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.9512e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0240622717346026 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.000706277087068412, dt = 0.0001093661346982433
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 427.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.0%)
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.9629e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9815214659736173 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008156432217666553, dt = 0.00010779301620595844
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1964.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 423.27 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.7%)
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    | 5.0402e+05 | 65536 |      2 | 1.300e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9844551276192592 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009234362379726138, dt = 0.00010641928608971432
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.1%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 454.35 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.8%)
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.9301e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.882016409177426 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010298555240623281, dt = 0.00010520569763276211
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 447.85 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.9%)
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.8951e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8289639104192585 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011350612216950902, dt = 0.00010412181761245932
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 429.22 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.9%)
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.9596e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8366626542121844 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012391830393075494, dt = 0.00010314418535258154
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.1%)
   patch tree reduce : 2.05 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 441.92 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.7%)
Info: cfl dt = 0.00010225470808944258                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0199e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.844236077528573 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001342327224660131, dt = 0.00010225470808944258
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 381.32 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.2%)
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.8773e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7396055334387306 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014445819327495734, dt = 0.00010143937470752879
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 407.92 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.1%)
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.7807e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6638944605864854 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015460213074571022, dt = 0.0001006872604494412
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 439.62 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.1%)
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.9490e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.737229025333675 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016467085679065434, dt = 9.998977007890212e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.5%)
Info: cfl dt = 9.934006785392846e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9008e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6918285378964226 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017466983379854455, dt = 9.934006785392846e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 424.39 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.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.7989e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.618731403895133 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001846038405839374, dt = 9.873265090298851e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.1%)
   patch tree reduce : 1994.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 448.49 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.7%)
Info: cfl dt = 9.81630303713794e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9166e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.666558729589635 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019447710567423624, dt = 9.81630303713794e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.4%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 369.55 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.9%)
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.9286e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.657632886976349 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020429340871137417, dt = 9.762749344868406e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 411.29 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.0%)
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.7892e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.568376060511533 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002140561580562426, dt = 9.712292642033374e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 435.64 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.2%)
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.8955e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.611805770347262 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00223768450698276, dt = 9.66466826547552e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.1%)
   patch tree reduce : 1934.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 436.82 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.7%)
Info: cfl dt = 9.61964838018187e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9907e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6495418798792203 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002334331189637515, dt = 9.61964838018187e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.1%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 452.73 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.0%)
Info: cfl dt = 9.577034552609458e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9669e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.624647830102283 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002430527673439334, dt = 9.577034552609458e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.2%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 411.85 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.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    | 5.0376e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6501868103459736 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025262980189654284, dt = 9.53665213479679e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 378.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.3%)
Info: cfl dt = 9.498345985165533e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9528e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.594586111477126 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002621664540313396, dt = 9.498345985165533e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 393.34 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.8%)
Info: cfl dt = 9.461977177452718e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9920e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6046187556337292 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027166480001650515, dt = 9.461977177452718e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.2%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 451.49 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.1%)
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.9839e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.590430317394016 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028112677719395788, dt = 9.427420442175475e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 423.10 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.7%)
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.9164e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5460385586897827 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0029055419763613336, dt = 9.394562153527339e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 400.27 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.5%)
Info: cfl dt = 9.363298724961119e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8503e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.503030371924221 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002999487597896607, dt = 9.363298724961119e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1993.00 ns (0.5%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 381.64 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.3%)
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.8760e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5079471005024474 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030931205851462184, dt = 9.333535314768472e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 408.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.2%)
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.8935e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.508942272852133 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003186455938293903, dt = 9.305184767593385e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 437.01 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.1%)
Info: cfl dt = 9.278166737417008e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9573e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5338942597781395 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003279507785969837, dt = 9.278166737417008e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 2.05 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 438.12 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.8%)
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    | 4.7942e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.443429713330937 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003372289453344007, dt = 9.252406951761004e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.2%)
   patch tree reduce : 2.50 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 482.59 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.2%)
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.8973e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4890340263123343 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003464813522861617, dt = 9.227836587161003e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.2%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 424.06 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.1%)
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.9518e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5100615245842457 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003557091888733227, dt = 9.204391733446075e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.1%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 481.71 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.5%)
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.8829e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4688571173846254 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036491358060676874, dt = 9.182012929826866e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 422.08 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.5%)
Info: cfl dt = 9.160644759788798e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9237e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4834559564438594 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003740955935365956, dt = 9.160644759788798e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 441.21 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (63.4%)
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.9309e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4812777861198256 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003832562382963844, dt = 9.140235494727e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 386.07 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.4%)
Info: cfl dt = 9.120736778441642e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9178e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4691825406410675 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003923964737911114, dt = 9.120736778441642e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 391.66 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.8%)
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.8938e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.451893369145412 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0040151721056955305, dt = 9.102103346245955e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 374.94 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.6%)
Info: cfl dt = 9.084292773674417e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8164e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.40815867051483 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00410619313915799, dt = 9.084292773674417e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 407.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.2%)
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.8511e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4207669314598332 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004197036066894734, dt = 9.067265250722153e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 469.40 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.9%)
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    | 4.9186e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.449838066382187 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004287708719401956, dt = 9.050983378275315e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 398.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.0%)
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    | 4.8506e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.411622645849322 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004378218553184709, dt = 9.035411983983322e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 389.62 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.5%)
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    | 4.9325e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4481578194506066 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004468572673024542, dt = 9.020517955268955e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 420.54 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (63.2%)
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    | 4.9464e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.45101601648869 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004558777852577232, dt = 9.006270087519534e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 421.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.1%)
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    | 4.9731e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.460315576917718 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046488405534524276, dt = 8.992638945783673e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 452.65 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.0%)
Info: cfl dt = 8.979596738528579e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9700e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4550781189965796 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004738766942910264, dt = 8.979596738528579e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 436.19 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.3%)
Info: cfl dt = 8.967117202203327e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9620e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4475940514390264 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00482856291029555, dt = 8.967117202203327e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.2%)
   patch tree reduce : 1933.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 464.29 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.1%)
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.9782e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.452151339292904 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004918234082317583, dt = 8.955175495512559e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 415.81 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.9%)
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.9298e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.425092055959058 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0050077858372727085, dt = 8.943748102439046e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 415.87 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.8%)
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    | 5.0428e+05 | 65536 |      2 | 1.300e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.477490547486135 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005097223318297099, dt = 8.932812743167362e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 384.35 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.9%)
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.9124e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4104613489681723 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005186551445728773, dt = 8.922348292158211e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 429.92 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.5%)
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.9475e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4248832516193364 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005275774928650355, dt = 8.912334702706868e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.19 us    (0.5%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 399.36 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (62.7%)
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.9051e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4013833938668605 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0053648982756774235, dt = 8.902752937391787e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 388.05 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.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.9363e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.414080421672591 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005453925805051342, dt = 8.893584903883428e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 404.07 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.2%)
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    | 5.0695e+05 | 65536 |      2 | 1.293e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4766575597242033 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005542861654090176, dt = 8.884813395639143e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 410.61 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.9%)
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    | 5.0888e+05 | 65536 |      2 | 1.288e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4836364300992426 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005631709788046568, dt = 8.876422037058785e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1173.00 ns (0.3%)
   LB compute        : 421.05 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.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.9224e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.400162284570682 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0057204740084171556, dt = 8.86839523271837e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 408.54 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.3%)
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    | 5.0260e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4484235155200587 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00580915796074434, dt = 8.860718120336847e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 373.93 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.3%)
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    | 5.0222e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4444579376581204 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005897765141947708, dt = 8.853376527164225e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 435.17 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.8%)
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    | 5.0051e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4341137714127066 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00598629890721935, dt = 8.846356929509018e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 396.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.7%)
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.9921e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.425891677709042 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00607476247651444, dt = 8.839646415149146e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 420.92 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.8%)
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.9821e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.419201606794297 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006163158940665932, dt = 8.83323264839402e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 437.99 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.6%)
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.5735e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2191698891208067 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006251491267149872, dt = 8.827103837586521e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.68 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (63.6%)
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    | 5.2243e+05 | 65536 |      2 | 1.254e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5332054061512195 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006339762305525737, dt = 8.821248704852441e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 385.22 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.2%)
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.9267e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3872947426298166 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006427974792574262, dt = 8.815656457921915e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.3%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 384.50 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.2%)
Info: cfl dt = 8.810316763862651e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9626e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4031900368557784 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006516131357153481, dt = 8.810316763862651e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1993.00 ns (0.5%)
   gen split merge   : 1031.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.0%)
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.9617e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.401290807901094 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006604234524792108, dt = 8.805219724578464e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 380.43 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.6%)
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.8719e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3564784478135246 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0066922867220378926, dt = 8.800355853939225e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.47 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.3%)
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.9874e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.410995059249079 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006780290280577285, dt = 8.795716056419379e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 397.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.7%)
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.9650e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3989134510647037 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0068682474411414784, dt = 8.791291607132533e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 385.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.9%)
Info: cfl dt = 8.787074133158679e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8573e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.345676216647591 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006956160357212804, dt = 8.787074133158679e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 397.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.6%)
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.9151e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3724635631162774 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007044031098544391, dt = 8.783055596069159e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 449.02 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.2%)
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.9410e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.383876558414262 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007131861654505082, dt = 8.779228275561854e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 428.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.2%)
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.9416e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.383126867775124 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0072196539372607, dt = 8.775584754126193e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 422.86 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.7%)
Info: cfl dt = 8.772117902663718e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9555e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3888401787648554 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007307409784801962, dt = 8.772117902663718e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1973.00 ns (0.5%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 392.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.6%)
Info: cfl dt = 8.768820866995769e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9151e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.368447166341966 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007395130963828599, dt = 8.768820866995769e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.2%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 473.43 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.5%)
Info: cfl dt = 8.765687055195054e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9308e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.375090071647333 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007482819172498557, dt = 8.765687055195054e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 423.51 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.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.9340e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.375780266682544 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007570476043050507, dt = 8.762710125682677e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 380.96 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.7%)
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.9496e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.382472094097033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007658103144307334, dt = 8.759883976036588e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 380.88 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (61.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.8710e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3438908035169175 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0077457019840676995, dt = 8.757202732461461e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.28 us    (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 412.29 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.6%)
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.9066e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3603018297793827 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007833274011392314, dt = 8.754660739873665e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 405.08 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.2%)
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    | 4.9743e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3921823039206185 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00792082061879105, dt = 8.75225255255848e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.2%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 431.15 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.3%)
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.9444e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3771252529278395 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008008343144316634, dt = 8.749972925359743e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.2%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 435.17 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.9%)
Info: cfl dt = 8.747816805365116e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9157e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3627191269414585 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008095842873570232, dt = 8.747816805365116e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.3%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 414.63 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.8%)
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    | 4.8712e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3407702281009475 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008183321041623884, dt = 8.745779324052669e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1784.00 ns (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 376.33 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.6%)
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    | 4.8886e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.348578945926018 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00827077883486441, dt = 8.743855789867165e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.2%)
   patch tree reduce : 1574.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 389.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.0%)
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    | 4.7800e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2959065412338835 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008358217392763082, dt = 8.742041681196493e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.2%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 435.83 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.0%)
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    | 4.9682e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.385811036778688 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008445637809575047, dt = 8.740332639720941e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 364.79 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.8%)
Info: cfl dt = 8.738724464109897e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8935e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3494515577449557 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008533041135972256, dt = 8.738724464109897e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 413.80 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (64.3%)
Info: cfl dt = 8.737213104042461e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9077e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3558558163947443 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008620428380613354, dt = 8.737213104042461e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 2.18 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 425.16 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.4%)
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.8088e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.307989287419404 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008707800511653778, dt = 8.73579465452996e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 443.43 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.0%)
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.8648e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.334497141960373 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008795158458199078, dt = 8.7344653505202e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 440.65 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.2%)
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.9437e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.371985114061797 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008882503111704281, dt = 8.73322156176444e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 408.89 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.3%)
Info: cfl dt = 8.732059787929678e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9849e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3914185207840495 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008969835327321925, dt = 8.732059787929678e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 404.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (63.6%)
Info: cfl dt = 8.730976653939953e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8537e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3281439555413432 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009057155925201222, dt = 8.730976653939953e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 406.46 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.0%)
Info: cfl dt = 8.729968905531573e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8838e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.342300362929786 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009144465691740622, dt = 8.729968905531573e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1834.00 ns (0.5%)
   gen split merge   : 1293.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 377.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.7%)
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.9457e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.37171886038289 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009231765380795938, dt = 8.729033405008344e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1783.00 ns (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 376.16 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.0%)
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.9263e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3621511902995818 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00931905571484602, dt = 8.728167127183772e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 386.08 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 20.17 us   (93.6%)
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    | 5.0260e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4097414289360515 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009406337386117859, dt = 8.727367155498257e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 2.18 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 384.61 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.5%)
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.8481e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.324232314576085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009493611057672841, dt = 8.72663067830014e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 394.09 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.2%)
Info: cfl dt = 8.725954985280303e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8803e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3394522625246594 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009580877364455842, dt = 8.725954985280303e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 395.56 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.4%)
Info: cfl dt = 8.725337464050765e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7776e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.290046959342132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009668136914308645, dt = 8.725337464050765e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 440.85 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.0%)
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.7987e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3000057838831753 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009755390288949152, dt = 8.724775596858477e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 2.32 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 409.53 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (63.1%)
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.7766e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2892773104043536 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009842638044917737, dt = 8.724266957426127e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.50 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.0%)
Info: cfl dt = 8.723809207912435e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3261e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0732166145270856 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009929880714491999, dt = 8.723809207912435e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 428.51 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.7%)
Info: cfl dt = 8.723400095984954e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6809e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2431470591091904 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010017118806571123, dt = 8.723400095984954e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 389.83 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.2%)
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.4951e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1539885157532406 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010104352807530971, dt = 8.723037451998974e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 398.58 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.4%)
Info: cfl dt = 8.722719186276549e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5688e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.189228316728134 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010191583182050962, dt = 8.722719186276549e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.5%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 375.33 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.2%)
Info: cfl dt = 8.722443286480211e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4466e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.130615525104523 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010278810373913727, dt = 8.722443286480211e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 2.10 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 471.64 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.9%)
Info: cfl dt = 8.722207815076305e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9730e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3827454922635964 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010366034806778529, dt = 8.722207815076305e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 1203.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 415.22 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.1%)
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.7696e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.285255738099209 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010453256884929292, dt = 8.722010906883284e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.20 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.0%)
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.8653e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.331028538462689 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010540476993998125, dt = 8.721850766700673e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.3%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 385.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.9%)
Info: cfl dt = 8.721725667014773e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8418e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3197193079289917 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010627695501665133, dt = 8.721725667014773e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1582.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 424.04 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.5%)
Info: cfl dt = 8.721466016291845e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8904e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3429691061527502 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01071491275833528, dt = 8.721466016291845e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 400.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.8%)
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.9589e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3757078801678513 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010802127418498198, dt = 8.721023117149361e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 399.40 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.9%)
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.8358e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3166520128170753 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010889337649669692, dt = 8.720626934646868e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 429.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.1%)
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.9279e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3606346102014806 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01097654391901616, dt = 8.720275570138364e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 375.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.1%)
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    | 4.9101e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3520134745987846 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011063746674717543, dt = 8.719967184282732e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 429.23 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.1%)
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.7879e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.293413651191236 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01115094634656037, dt = 8.719700001790935e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1834.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 378.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.5%)
Info: cfl dt = 8.719472301950401e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8388e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3177360231303252 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01123814334657828, dt = 8.719472301950401e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.4%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 422.18 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.5%)
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    | 5.0021e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3958778794813957 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011325338069597785, dt = 8.719282417328234e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1994.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 438.07 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.7%)
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.8550e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3253806998143345 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011412530893771066, dt = 8.719128733171533e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 410.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.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    | 5.0204e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4045742771481913 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011499722181102782, dt = 8.719009686068282e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1763.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 369.77 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (63.8%)
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.8601e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.327730638891123 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011586912277963466, dt = 8.718923762653743e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 387.36 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.3%)
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.9629e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.37696902414282 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011674101515590004, dt = 8.71886949835884e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 406.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.0%)
Info: cfl dt = 8.718845476197027e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9386e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3652948971272894 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011761290210573592, dt = 8.718845476197027e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 436.22 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.6%)
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    | 4.9432e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.367500292021263 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011848478665335562, dt = 8.71885032558626e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 425.29 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.1%)
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    | 4.9225e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3575860117369616 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011935667168591424, dt = 6.433283140857594e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 385.90 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.9%)
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    | 4.9703e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7564752922927256 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 202.150718302 (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.24 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.90 us    (55.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (0.3%)
   patch tree reduce : 891.00 ns  (0.2%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 444.04 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (61.8%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1834.00 ns (0.5%)
   patch tree reduce : 431.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 281.00 ns  (0.1%)
   LB compute        : 386.29 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 1954.00 ns (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (61.4%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1263.00 ns (0.3%)
   patch tree reduce : 391.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 280.00 ns  (0.1%)
   LB compute        : 386.07 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 1944.00 ns (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.5%)
   patch tree reduce : 1162.00 ns (0.2%)
   gen split merge   : 742.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.1%)
   LB compute        : 515.64 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.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.7184e+05 | 65536 |      2 | 1.389e-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.00012527870714644892
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.1%)
   patch tree reduce : 1753.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 511.84 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.9%)
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.9039e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.374781774290373 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00012527870714644892, dt = 0.00012194328524833338
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 431.80 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.0%)
Info: cfl dt = 0.00011699661083727856                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8791e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2682811902949065 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0002472219923947823, dt = 0.00011699661083727856
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.1%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 463.54 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.7%)
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.8740e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.132429059557708 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00036421860323206085, dt = 0.00011292989361501563
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 390.40 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.0%)
Info: cfl dt = 0.00010995299130608725                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9150e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0489795125679238 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004771484968470765, dt = 0.00010995299130608725
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 404.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.8%)
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.9179e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9703797567344075 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005871014881531638, dt = 0.00010775972900684009
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 1183.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 403.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (62.8%)
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.5393e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6870311089078838 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006948612171600038, dt = 0.00010599979793972441
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1313.00 ns (0.3%)
   LB compute        : 369.46 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.9%)
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.8412e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8189013649537045 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008008610150997283, dt = 0.00010440354420906809
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.68 us   (1.9%)
   patch tree reduce : 1453.00 ns (0.1%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.1%)
   LB compute        : 1129.49 us (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (62.9%)
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.8628e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7888568675197876 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009052645593087964, dt = 0.00010284242359807741
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 373.24 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.2%)
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.9479e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7952447090500603 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010081069829068737, dt = 0.00010140496147951495
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1532.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 464.35 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.9%)
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.7669e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6553131349875234 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011095119443863886, dt = 0.00010015895322089624
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 450.05 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.6%)
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.7119e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5924412854560113 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012096708976072849, dt = 9.917383558861744e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 413.63 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.8%)
Info: cfl dt = 9.835343207164333e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8120e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6214797549090876 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013088447331959024, dt = 9.835343207164333e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.3%)
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.8290e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.608956038111534 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014071981652675457, dt = 9.765806550475957e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 412.06 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.6%)
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.8869e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6215764800757664 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015048562307723053, dt = 9.70733968323717e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 409.83 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.8%)
Info: cfl dt = 9.655853688093257e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7804e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.549095915977299 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001601929627604677, dt = 9.655853688093257e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1272.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 371.88 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.1%)
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.8690e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5825677761121746 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016984881644856095, dt = 9.608625760598223e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 451.19 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.7%)
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.8686e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5697119563998747 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017945744220915919, dt = 9.564792091147684e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 388.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.1%)
Info: cfl dt = 9.522665243729501e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9043e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5767891111965966 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018902223430030687, dt = 9.522665243729501e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 381.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.8950e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.560559178404248 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019854489954403637, dt = 9.481223484503838e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1173.00 ns (0.3%)
   LB compute        : 401.92 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.2%)
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.9297e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.567476494423783 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002080261230285402, dt = 9.439966382495066e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 408.28 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.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.7680e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.472450383190595 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0021746608941103527, dt = 9.398782818609322e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 415.85 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.3%)
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.8306e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.494000900226371 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002268648722296446, dt = 9.35741275668243e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1372.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 367.74 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (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.8865e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.511746940426801 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023622228498632702, dt = 9.312983741130983e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 406.44 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.4%)
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.7285e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.41901561575992 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00245535268727458, dt = 9.272135756662832e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.3%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 382.53 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (63.9%)
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.7408e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4146343195716 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025480740448412084, dt = 9.234665527059427e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 377.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.0%)
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.8934e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4822968214446868 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002640420700111803, dt = 9.197703109568877e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 415.44 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (65.8%)
Info: cfl dt = 9.16067110765547e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9082e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.479820361233041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027323977312074914, dt = 9.16067110765547e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 359.71 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.2%)
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.9896e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.510818832313708 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002824004442284046, dt = 9.125534611421453e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.1%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 430.06 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (67.3%)
Info: cfl dt = 9.092628172738182e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9452e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.478914004472184 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0029152597883982606, dt = 9.092628172738182e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.2%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 381.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.2%)
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.8958e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4453072144859602 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030061860701256424, dt = 9.062241410961811e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 423.55 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.1%)
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.7516e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3653579416846187 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030968084842352603, dt = 9.034562605544078e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 388.09 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.1%)
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.9130e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4382559803760806 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031871541102907013, dt = 9.009607849952474e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 369.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (64.8%)
Info: cfl dt = 8.987189017651928e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8538e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.40220007287264 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003277250188790226, dt = 8.987189017651928e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 440.69 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (65.5%)
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.7081e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.324287014281518 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003367122078966745, dt = 8.967099010696914e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 420.45 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.6%)
Info: cfl dt = 8.949120248017741e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0480e+05 | 65536 |      2 | 1.298e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4865299189810752 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034567930690737143, dt = 8.949120248017741e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 456.54 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.8%)
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.9685e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4424613330569187 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0035462842715538916, dt = 8.933017427100763e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 417.03 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.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.8810e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3951325326025854 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036356144458248993, dt = 8.918541711542779e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 393.33 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (64.7%)
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.8669e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3843226835669658 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003724799862940327, dt = 8.905438701889205e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.3%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 371.59 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (62.0%)
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.6845e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.291626454096711 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003813854249959219, dt = 8.893458114370353e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.3%)
   patch tree reduce : 1362.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 360.17 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.7%)
Info: cfl dt = 8.882365119085722e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9130e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.400165791114969 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0039027888311029225, dt = 8.882365119085722e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.5%)
   patch tree reduce : 1472.00 ns (0.4%)
   gen split merge   : 1233.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 369.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.9%)
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.7451e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.315261016479142 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00399161248229378, dt = 8.871958047026054e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 416.15 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.2%)
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.7125e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2966204697574177 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00408033206276404, dt = 8.862054305489141e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 409.39 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.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.6617e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.269355904825355 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0041689526058189316, dt = 8.852511068037879e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 391.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.3%)
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.7887e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.328669983941511 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00425747771649931, dt = 8.843232096838793e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1313.00 ns (0.3%)
   LB compute        : 384.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (62.9%)
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.7994e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.331433392703909 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004345910037467698, dt = 8.834167036794524e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 412.94 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.7%)
Info: cfl dt = 8.825306014102054e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8358e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.346701183958423 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0044342517078356436, dt = 8.825306014102054e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 398.52 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.2%)
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.8160e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3347195063516932 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004522504767976664, dt = 8.816671448112624e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 392.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.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.8219e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3353316506646706 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00461067148245779, dt = 8.808308578787945e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 394.00 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.0%)
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.8564e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.349801007652977 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00469875456824567, dt = 8.800275859493844e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.4%)
   patch tree reduce : 1323.00 ns (0.3%)
   gen split merge   : 1031.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 406.90 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.2%)
Info: cfl dt = 8.792636345506915e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7039e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2739212203570203 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004786757326840608, dt = 8.792636345506915e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1472.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 400.90 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (63.3%)
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.8460e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3405737159684663 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004874683690295678, dt = 8.785446576674976e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1263.00 ns (0.3%)
   LB compute        : 425.29 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.7%)
Info: cfl dt = 8.77875758194941e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7332e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.284258746894037 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004962538156062428, dt = 8.77875758194941e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.4%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 372.27 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.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.7831e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.306538627215304 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005050325731881922, dt = 8.77260681326726e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 399.69 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.8%)
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.8257e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.325457116394367 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005138051800014595, dt = 8.767014078881186e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 407.98 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.9%)
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.9098e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.364488023183191 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0052257219408034065, dt = 8.761980402256515e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 397.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (62.5%)
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.8770e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3473461737836505 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005313341744825972, dt = 8.757488866664063e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 415.75 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.5%)
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.6007e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2132451239091795 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005400916633492612, dt = 8.75350692233837e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 399.58 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (62.3%)
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    | 4.8694e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3414106997908584 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005488451702715996, dt = 8.749989954904952e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.1%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 435.91 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.1%)
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    | 4.7891e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.301887821851993 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005575951602265045, dt = 8.746885372376098e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 400.60 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (62.9%)
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.8159e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3139450126670367 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005663420455988806, dt = 8.744136591402676e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 413.66 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.9%)
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.6476e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.232368823081069 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0057508618219028335, dt = 8.74167416273142e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 448.57 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.3%)
Info: cfl dt = 8.739363525427659e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8553e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.33150594290747 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005838278563530148, dt = 8.739363525427659e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1854.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 390.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (63.2%)
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.7145e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2632663288127515 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005925672198784425, dt = 8.737180236574057e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.1%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 461.41 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (65.5%)
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    | 4.8386e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.322287940507399 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006013044001150165, dt = 8.735106143345141e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 417.06 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.3%)
Info: cfl dt = 8.73313106256497e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7481e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2783187915706984 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006100395062583617, dt = 8.73313106256497e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 411.79 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (64.5%)
Info: cfl dt = 8.731253775091966e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7065e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.25784124631543 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006187726373209267, dt = 8.731253775091966e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 417.06 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.3%)
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.8820e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.341522488463994 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006275038910960186, dt = 8.729482695650472e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 392.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (62.4%)
Info: cfl dt = 8.727829567969003e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9326e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3652872921716264 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006362333737916691, dt = 8.727829567969003e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 410.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (69.7%)
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.8810e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3400950690146254 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006449612033596381, dt = 8.726308778312026e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.4%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 361.17 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.6%)
Info: cfl dt = 8.724934764850626e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0344e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4132568395659337 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006536875121379501, dt = 8.724934764850626e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 372.35 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.5%)
Info: cfl dt = 8.723720638102222e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0356e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.413455453104466 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006624124469028008, dt = 8.723720638102222e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 375.24 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (62.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.9624e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3780353718168556 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00671136167540903, dt = 8.722676727468478e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 392.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (63.6%)
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    | 5.0075e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.399355488674576 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006798588442683715, dt = 8.721809383937703e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 415.92 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (62.8%)
Info: cfl dt = 8.72112024035518e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0064e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3985947070115943 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006885806536523092, dt = 8.72112024035518e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 431.73 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.4%)
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.9017e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3482208001733236 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006973017738926644, dt = 8.720605972674997e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 399.75 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.2%)
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    | 5.0299e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.409509507213792 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0070602237986533934, dt = 8.720258543136782e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 402.94 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.0%)
Info: cfl dt = 8.720065857413108e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8714e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3334860789250773 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0071474263840847615, dt = 8.720065857413108e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 386.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.9%)
Info: cfl dt = 8.720012733155833e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8602e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.32808301281859 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0072346270426588925, dt = 8.720012733155833e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 400.61 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 21.96 us   (5.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.5%)
Info: cfl dt = 8.720082059053476e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3295e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0738722386082316 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007321827169990451, dt = 8.720082059053476e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 440.83 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.1%)
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.9006e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3474333480377436 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007409027990580986, dt = 8.720256021285693e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 432.39 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.9%)
Info: cfl dt = 8.720517292976696e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4488e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1310539669925843 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007496230550793842, dt = 8.720517292976696e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 423.07 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
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.8895e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3422163379189223 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007583435723723609, dt = 8.720850075127165e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 374.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (63.6%)
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.8763e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3359912939871945 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00767064422447488, dt = 8.720958032590434e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (0.7%)
   patch tree reduce : 1543.00 ns (0.2%)
   gen split merge   : 902.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 756.46 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.7%)
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.6941e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2487595553599125 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0077578538048007845, dt = 8.72106093178788e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (0.3%)
   patch tree reduce : 1663.00 ns (0.1%)
   gen split merge   : 872.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.1%)
   LB compute        : 1731.20 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.2%)
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.8350e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3162605632271513 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007845064414118664, dt = 8.721244935542794e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 383.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.3%)
Info: cfl dt = 8.72150138495626e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9430e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.368068190745679 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007932276863474091, dt = 8.72150138495626e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 388.08 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.6%)
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.8956e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3454129157850403 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008019491877323653, dt = 8.721822233005544e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 412.66 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.7%)
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.8325e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.315285792246792 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008106710099653709, dt = 8.722203736325332e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.2%)
   LB compute        : 430.18 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.2%)
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.7577e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2795178808571874 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008193932137016961, dt = 8.722592097934234e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 399.30 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.2%)
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.8191e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.309075806197517 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008281158057996304, dt = 8.72299413314737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 1332.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 423.53 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.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    | 4.8658e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.331545496587423 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008368387999327778, dt = 8.723415969009605e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 409.42 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.5%)
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    | 4.8351e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3169587458819354 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008455622159017875, dt = 8.723862774923204e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 438.31 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.6%)
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    | 4.7860e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2935498271192047 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008542860786767107, dt = 8.724339105214602e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 430.70 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.9%)
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.8231e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3114134717771937 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008630104177819254, dt = 8.72484897346446e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.4%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 377.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.1%)
Info: cfl dt = 8.725395786423685e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8497e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3243378842776314 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008717352667553899, dt = 8.725395786423685e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 390.85 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (62.1%)
Info: cfl dt = 8.725982226301725e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8199e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.31018936244411 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008804606625418135, dt = 8.725982226301725e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1472.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 421.29 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.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    | 4.8782e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.33827511698703 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008891866447681153, dt = 8.726610136377267e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 406.58 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.0%)
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.9700e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3824654872778024 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008979132549044925, dt = 8.727280442898074e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 406.98 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.0%)
Info: cfl dt = 8.727993130922761e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9514e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.373718467990733 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009066405353473906, dt = 8.727993130922761e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 391.11 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.0%)
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.9723e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.383944904411019 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009153685284783133, dt = 8.72874728001668e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.3%)
   patch tree reduce : 1323.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 361.07 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (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.9293e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.363521170255302 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0092409727575833, dt = 8.729541156074399e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 376.62 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (63.8%)
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.9139e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.356369305807379 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009328268169144043, dt = 8.730372367395858e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 378.38 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.8%)
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.9090e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.354231988028317 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009415571892818001, dt = 8.731238145567088e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 377.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.0%)
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.8482e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3252814525779804 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009502884274273673, dt = 8.732127468108235e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 387.16 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.9%)
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.9178e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.358934624136139 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009590205548954756, dt = 8.733054478710443e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 386.58 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.0%)
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.9392e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3694517484374646 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00967753609374186, dt = 8.734011957762702e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 388.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.9%)
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.8776e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3401303689191395 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009764876213319488, dt = 8.734995074679144e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.1%)
   patch tree reduce : 1743.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 485.35 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.8%)
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.9052e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.353661029421896 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009852226164066278, dt = 8.73600060573938e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.1%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 469.84 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (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.8633e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.333821629957471 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009939586170123672, dt = 8.737026424309855e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 425.54 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.0%)
Info: cfl dt = 8.738070333473149e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7484e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2789451138261274 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01002695643436677, dt = 8.738070333473149e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1312.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 405.87 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.7%)
Info: cfl dt = 8.739131501291448e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8601e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3328429455023785 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010114337137701502, dt = 8.739131501291448e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.5%)
   patch tree reduce : 1393.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 365.78 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.5%)
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.8487e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3276195783690574 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010201728452714416, dt = 8.740210242693088e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 398.78 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.5%)
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.8660e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3362524505740216 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010289130555141347, dt = 8.741308147365861e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 410.04 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (64.8%)
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.8810e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.343713904144478 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010376543636615006, dt = 8.742430944622608e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 371.63 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.0%)
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.9053e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.355699250093218 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010463967946061232, dt = 8.743580794273593e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 428.05 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.1%)
Info: cfl dt = 8.744757556660001e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0188e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4105393353593 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010551403754003968, dt = 8.744757556660001e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 389.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.0%)
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    | 5.0650e+05 | 65536 |      2 | 1.294e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4330632995618005 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010638851329570568, dt = 8.745959536505092e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 419.73 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (62.3%)
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.8692e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.339304738752901 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010726310924935619, dt = 8.747183960266661e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 377.06 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.5%)
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.9895e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3974253394562415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010813782764538286, dt = 8.748427312450496e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 386.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.2%)
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    | 4.9291e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3687507805456742 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01090126703766279, dt = 8.749686562038205e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 391.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.7%)
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    | 5.0756e+05 | 65536 |      2 | 1.291e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4395047652195396 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010988763903283173, dt = 8.750965649549065e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 413.30 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.6%)
Info: cfl dt = 8.752244754234534e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9077e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3591584378909904 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011076273559778664, dt = 8.752244754234534e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 455.28 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.9%)
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    | 4.9537e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.381632649215449 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011163796007321009, dt = 8.753528220074958e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 396.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.5%)
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    | 4.9356e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3732827685138367 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011251331289521759, dt = 8.754816488813481e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 449.30 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.4%)
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.7819e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2996844335833617 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011338879454409893, dt = 8.756107371734413e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 434.38 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.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.9223e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.367578160981931 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011426440528127238, dt = 8.757426230084379e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 399.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (63.0%)
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.9335e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3732880813889645 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011514014790428082, dt = 8.758756026896923e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 379.01 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.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.9023e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3586668833395414 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01160160235069705, dt = 8.760084378530697e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1292.00 ns (0.3%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1013.00 ns (0.3%)
   LB compute        : 364.69 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.4%)
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    | 4.9937e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4030000028201224 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011689203194482358, dt = 8.761402203782283e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 398.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.1%)
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.9280e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3717347289771173 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01177681721652018, dt = 8.762705564043834e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 397.80 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.1%)
Info: cfl dt = 8.763997803071866e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9122e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.364505917033146 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011864444272160619, dt = 8.763997803071866e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 375.63 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.8%)
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.6817e+05 | 65536 |      2 | 1.780e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7724596734654539 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011952084250191338, dt = 4.7915749808662145e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 440.86 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (62.3%)
Info: cfl dt = 8.765951667778165e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9301e+05 | 65536 |      2 | 1.668e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0344400485136103 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 220.53656974900002 (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.20 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.54 us    (57.5%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (0.4%)
   patch tree reduce : 1002.00 ns (0.2%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 428.78 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (62.8%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (0.4%)
   patch tree reduce : 421.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 371.27 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 2.00 us    (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (62.8%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (0.4%)
   patch tree reduce : 461.00 ns  (0.1%)
   gen split merge   : 361.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 281.00 ns  (0.1%)
   LB compute        : 382.64 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 2.05 us    (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.0%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.2%)
   LB compute        : 473.97 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (64.9%)
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.8245e+05 | 65536 |      2 | 1.358e-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.00012527870714644892
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1653.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 505.97 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (69.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.8143e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3130540112626257 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00012527870714644892, dt = 0.00012194328524833338
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 437.93 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.0%)
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.8457e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2459410499855506 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0002472219923947823, dt = 0.00011718301918563436
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 382.10 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.3%)
Info: cfl dt = 0.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.8943e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1504614887931077 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00036440501158041663, dt = 0.00011303765833387629
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 394.43 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.8%)
Info: cfl dt = 0.0001096717358561042                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9273e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0595184618728983 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004774426699142929, dt = 0.0001096717358561042
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 399.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.8%)
Info: cfl dt = 0.0001069708779112097                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8438e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9181279445646884 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005871144057703971, dt = 0.0001069708779112097
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 446.16 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.4%)
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.8518e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.850970654291588 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006940852836816068, dt = 0.0001047357523269304
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 449.84 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.4%)
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.8518e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7913753998559896 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007988210360085372, dt = 0.00010275836129966528
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 383.33 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.6%)
Info: cfl dt = 0.00010093838217613247                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8260e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.724133408749593 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009015793973082025, dt = 0.00010093838217613247
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 411.38 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.0%)
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.9019e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.71796784676871 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001002517779484335, dt = 9.92821161030289e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 408.96 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (62.7%)
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.8100e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6232330462286235 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001101799895587364, dt = 9.781253688156573e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 400.45 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.4%)
Info: cfl dt = 9.62988746606766e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9432e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6559828057688186 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011996124324689297, dt = 9.62988746606766e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 385.77 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.3%)
Info: cfl dt = 9.515124903138496e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8333e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.556762187166691 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012959113071296063, dt = 9.515124903138496e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 421.49 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.1%)
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.8860e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.553831799802985 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013910625561609914, dt = 9.42272688249683e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 387.39 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.3%)
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.8997e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.536137900689156 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014852898249859596, dt = 9.345804464402766e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 392.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (62.8%)
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    | 4.9212e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5264644929530764 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015787478696299873, dt = 9.285856321597753e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 396.71 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.7%)
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.8184e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4578089857074015 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016716064328459648, dt = 9.236852173515522e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1512.00 ns (0.3%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 423.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.7%)
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.9057e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4891454325466085 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00176397495458112, dt = 9.201410536704986e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1863.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 401.16 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.4%)
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.4898e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.269348759899763 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018559890599481699, dt = 9.163730568344315e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 386.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.1%)
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.7578e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3949856719114466 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001947626365631613, dt = 9.109931011426401e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 444.29 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.3%)
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.7901e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.397081155255614 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002038725675745877, dt = 9.058898998533345e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 443.50 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.4%)
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.8374e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4071779286860857 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0021293146657312104, dt = 9.011113763576538e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 411.99 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.4%)
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.8214e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3865510054594203 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002219425803366976, dt = 8.967033877089488e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 381.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.8%)
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.7907e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.359773046317111 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002309096142137871, dt = 8.927006876295973e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 394.97 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.2%)
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    | 4.8095e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3584633220469455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023983662109008305, dt = 8.891246897792028e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 382.69 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.2%)
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.8943e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3904162227062073 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002487278679878751, dt = 8.859823285369457e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.4%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 375.86 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (64.8%)
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.7669e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3199651785403628 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025758769127324456, dt = 8.832595674722342e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 376.65 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (62.7%)
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.7374e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2985162668955548 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002664202869479669, dt = 8.809296079429369e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 433.89 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.2%)
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.8461e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.345068987994199 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027522958302739625, dt = 8.789607199068497e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 377.90 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.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.8991e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3654427544856715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028401919022646473, dt = 8.773174525067891e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 416.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.8%)
Info: cfl dt = 8.759611795648598e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8540e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.339267496958053 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0029279236475153263, dt = 8.759611795648598e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (0.7%)
   patch tree reduce : 1723.00 ns (0.2%)
   gen split merge   : 892.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.1%)
   LB compute        : 752.98 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (67.1%)
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.9002e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.357893035915313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003015519765471812, dt = 8.748530527003208e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 418.24 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.9%)
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.9609e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3840812348862404 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003103005070741844, dt = 8.739547749644054e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.0%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 471.55 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.4%)
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.8139e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.311065581217536 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031904005482382846, dt = 8.732285360504853e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 416.92 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.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.7813e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2934796411757157 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003277723401843333, dt = 8.726376393282223e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 428.32 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.7%)
Info: cfl dt = 8.72147732413459e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9008e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3492118482656887 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033649871657761552, dt = 8.72147732413459e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1343.00 ns (0.3%)
   LB compute        : 433.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.8%)
Info: cfl dt = 8.717284659111767e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0254e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.407581398011338 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003452201939017501, dt = 8.717284659111767e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 385.78 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.5%)
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.9652e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.377609900847843 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0035393747856086186, dt = 8.71354752228806e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 408.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (62.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.8329e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.313264992779743 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003626510260831499, dt = 8.710075484043388e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 404.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.3%)
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.8813e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.335496648864421 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003713611015671933, dt = 8.70674131860144e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 380.15 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (64.1%)
Info: cfl dt = 8.703478497678402e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8712e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3297572748035584 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0038006784288579475, dt = 8.703478497678402e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.77 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.6%)
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    | 4.8709e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.328767299619371 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0038877132138347313, dt = 8.700273238483163e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 382.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.5%)
Info: cfl dt = 8.697153114481726e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7778e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.283425374785266 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003974715946219563, dt = 8.697153114481726e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 413.52 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.4%)
Info: cfl dt = 8.694174314207124e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8458e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.315073389750457 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00406168747736438, dt = 8.694174314207124e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 445.96 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.8%)
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.8689e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.325332223118298 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004148629220506452, dt = 8.691306630150777e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 434.78 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.8%)
Info: cfl dt = 8.688632298978991e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6558e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2228042184577794 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0042355422868079595, dt = 8.688632298978991e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.2%)
   patch tree reduce : 1623.00 ns (0.1%)
   gen split merge   : 771.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.0%)
   LB compute        : 2.63 ms    (98.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.2%)
Info: cfl dt = 8.686349410697861e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6932e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2399537917346306 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004322428609797749, dt = 8.686349410697861e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.2%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 404.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.1%)
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.6679e+05 | 65536 |      2 | 1.787e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.750156439573614 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004409292103904728, dt = 8.684496043784134e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.2%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 445.36 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.1%)
Info: cfl dt = 8.683090981899234e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4086e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.10312444764203 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004496137064342569, dt = 8.683090981899234e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.1%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 464.76 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.9%)
Info: cfl dt = 8.682134585737051e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5750e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.182187693529254 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004582967974161562, dt = 8.682134585737051e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 417.23 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.1%)
Info: cfl dt = 8.681610575881261e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8532e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3145870679120204 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004669789320018932, dt = 8.681610575881261e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 403.57 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.9%)
Info: cfl dt = 8.681488641487771e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8322e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.30444198426762 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004756605425777744, dt = 8.681488641487771e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.2%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 389.65 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.2%)
Info: cfl dt = 8.681727977092717e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8431e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.309606124000028 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004843420312192622, dt = 8.681727977092717e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1963.00 ns (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1033.00 ns (0.3%)
   LB compute        : 385.08 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.4%)
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.7397e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2603528980535885 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004930237591963549, dt = 8.682280138964458e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 435.74 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.1%)
Info: cfl dt = 8.683092732621294e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8475e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3119124808403306 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005017060393353193, dt = 8.683092732621294e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 405.41 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.5%)
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.6149e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2011997869380013 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005103891320679406, dt = 8.684113028126001e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 372.70 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (63.4%)
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.7485e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.26516564694 (tsim/hr)                                [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005190732450960666, dt = 8.685291030986368e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.1%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 455.99 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.1%)
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.6546e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.220702735578219 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00527758536127053, dt = 8.686582067120355e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1773.00 ns (0.0%)
   gen split merge   : 862.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.0%)
   LB compute        : 9.95 ms    (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.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.5677e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1795652091414164 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005364451181941734, dt = 8.687977321167774e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 395.85 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.5%)
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.8288e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3045037945892832 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005451330955153412, dt = 8.689458894013918e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 416.76 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.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.8013e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2917846228357592 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005538225544093551, dt = 8.690996931186986e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 422.61 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.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.5849e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1888799709347753 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005625135513405421, dt = 8.692571029956123e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.3%)
   patch tree reduce : 1473.00 ns (0.1%)
   gen split merge   : 771.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.1%)
   LB compute        : 1712.39 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.6%)
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.6539e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.222233989665098 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0057120612237049825, dt = 8.694169490018779e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 355.42 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (63.5%)
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.9620e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3697874140386452 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00579900291860517, dt = 8.695787879913286e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 407.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.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.8347e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3093985685850016 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005885960797404303, dt = 8.697421640689146e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 416.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.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.6180e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2062964075885274 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005972935013811195, dt = 8.69906014189377e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.0%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 523.03 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.6%)
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.5717e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1846252047962147 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006059925615230132, dt = 8.700870606776872e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.5%)
   patch tree reduce : 1522.00 ns (0.1%)
   gen split merge   : 942.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.1%)
   LB compute        : 1052.18 us (98.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.0%)
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.5011e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1513095067408843 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006146934321297901, dt = 8.702864796808555e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 387.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.6%)
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.6447e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2204417241867866 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006233962969265987, dt = 8.705039958846133e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.2%)
   LB compute        : 465.15 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.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.6513e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2241525270673415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006321013368854448, dt = 8.707383787761825e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 405.30 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (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.5589e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.180578370250869 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006408087206732066, dt = 8.70987768444605e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (0.7%)
   patch tree reduce : 1523.00 ns (0.2%)
   gen split merge   : 862.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.2%)
   LB compute        : 745.81 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.8%)
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.6580e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.228601177462656 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006495185983576526, dt = 8.71249906085787e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 470.16 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.9%)
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.6087e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.205666726505653 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006582310974185105, dt = 8.715223075130829e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 379.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.0%)
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.6134e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2086454740685046 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006669463204936413, dt = 8.718024016663651e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 377.56 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (64.4%)
Info: cfl dt = 8.719598379592434e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6606e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.231963374361153 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00675664344510305, dt = 8.719598379592434e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 369.34 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.5%)
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.7353e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2681358604665114 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006843839428898974, dt = 8.721057472971456e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 418.18 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (63.9%)
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.8208e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3094465656861325 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006931050003628688, dt = 8.722461417194882e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 1013.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 374.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.5%)
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.5923e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2003650054507693 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007018274617800637, dt = 8.723805497794106e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 379.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.6%)
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.8560e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.327049419253042 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007105512672778578, dt = 8.725112420766874e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1382.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 360.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (64.5%)
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.9166e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.35646471219761 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0071927637969862466, dt = 8.726431115475917e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.1%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 458.42 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.5%)
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.7243e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2646338805577315 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007280028108141006, dt = 8.727761761486927e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 422.97 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.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.8272e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3143081295645564 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007367305725755875, dt = 8.72909522565386e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 434.21 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (63.3%)
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.2501e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0379207075206214 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0074545966780124135, dt = 8.730405508969359e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 412.87 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.4%)
Info: cfl dt = 8.731704372382083e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2685e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0470846172500954 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0075419007331021075, dt = 8.731704372382083e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.6%)
   patch tree reduce : 1352.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 352.11 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.6%)
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    | 5.1116e+05 | 65536 |      2 | 1.282e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4517621920259445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007629217776825928, dt = 8.733130053383146e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.4%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 360.86 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.2%)
Info: cfl dt = 8.734652987469971e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1484e+05 | 65536 |      2 | 1.273e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4697947978672827 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00771654907735976, dt = 8.734652987469971e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 378.56 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (63.2%)
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    | 5.1055e+05 | 65536 |      2 | 1.284e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4496617402737413 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00780389560723446, dt = 8.736250753387335e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 367.61 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.0%)
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    | 5.1396e+05 | 65536 |      2 | 1.275e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.466476161461089 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007891258114768334, dt = 8.736712785005195e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 386.66 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (60.2%)
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.8727e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3385065734363994 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007978625242618385, dt = 8.736699199631566e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 373.17 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (65.4%)
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    | 5.0315e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4147003015595394 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0080659922346147, dt = 8.736702803589447e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1553.00 ns (0.4%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 355.63 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.4%)
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.6253e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2197925811667067 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008153359262650595, dt = 8.736740590855765e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 396.29 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.0%)
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.8348e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.320345828572258 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008240726668559153, dt = 8.736808500422236e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.2%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 1213.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 433.12 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.1%)
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.9590e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.379950419224885 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008328094753563374, dt = 8.7369035888658e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 425.72 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.5%)
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    | 5.0413e+05 | 65536 |      2 | 1.300e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.419463587492497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008415463789452033, dt = 8.736994402042445e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 376.07 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.0%)
Info: cfl dt = 8.736862903438961e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0302e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4141962128731222 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008502833733472458, dt = 8.736862903438961e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 405.51 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.7%)
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.8421e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3238588404038056 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008590202362506847, dt = 8.736251837765799e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 407.29 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.9%)
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.9682e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3842167105091567 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008677564880884505, dt = 8.735744615918362e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 404.31 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.0%)
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    | 5.0060e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4022070232714574 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008764922327043689, dt = 8.735336732799125e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 402.60 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.1%)
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    | 5.1440e+05 | 65536 |      2 | 1.274e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.468337274342722 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00885227569437168, dt = 8.735023928279213e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.2%)
   patch tree reduce : 1854.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.92 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (64.8%)
Info: cfl dt = 8.734804225830183e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5572e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1866598967830075 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008939625933654471, dt = 8.734804225830183e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (0.7%)
   patch tree reduce : 1553.00 ns (0.2%)
   gen split merge   : 1242.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 803.04 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.3%)
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.4962e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1573410455571445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009026973975912773, dt = 8.734645157847008e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 400.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.8%)
Info: cfl dt = 8.734527558465694e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6600e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2358850904234697 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009114320427491242, dt = 8.734527558465694e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1522.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 426.98 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.7%)
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    | 4.8077e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3067328846033153 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009201665703075899, dt = 8.734452483351247e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 378.04 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.8%)
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.7841e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.295378813371164 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009289010227909412, dt = 8.734420248199669e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 383.50 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (68.3%)
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.8463e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3252422183457004 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009376354430391408, dt = 8.734430619049606e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 381.79 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.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.7842e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.295450449179321 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009463698736581904, dt = 8.734482972092895e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 381.93 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 11.52 us   (2.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.0%)
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    | 4.5503e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1832281409905083 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009551043566302833, dt = 8.734576424447764e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.9%)
   patch tree reduce : 1323.00 ns (0.2%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 572.43 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.2%)
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.8726e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3379134347181103 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00963838933054731, dt = 8.734709939205363e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 413.34 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.3%)
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.6555e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2337742626276853 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009725736429939364, dt = 8.734882405392116e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 391.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.2%)
Info: cfl dt = 8.735092692446169e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6336e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2232984165160548 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009813085253993286, dt = 8.735092692446169e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 378.95 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.1%)
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    | 4.6078e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.21097188907011 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009900436180917748, dt = 8.735339684758034e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 413.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.7%)
Info: cfl dt = 8.735622296904615e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5627e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.189384448215564 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009987789577765329, dt = 8.735622296904615e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 431.98 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.5%)
Info: cfl dt = 8.735939472914647e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5783e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1969643762486664 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010075145800734375, dt = 8.735939472914647e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 393.27 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.4%)
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.8654e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3348020902310815 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010162505195463523, dt = 8.736290173451259e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 369.24 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.0%)
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.6735e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2428275381503404 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010249868097198035, dt = 8.736548510173812e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 398.80 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.4%)
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.6754e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2437715262245677 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010337233582299772, dt = 8.73660541251432e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 400.72 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (63.2%)
Info: cfl dt = 8.736705287624564e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5848e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2002979185269096 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010424599636424916, dt = 8.736705287624564e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 393.52 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.0%)
Info: cfl dt = 8.736824045646857e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9771e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3886169701894997 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010511966689301162, dt = 8.736824045646857e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 386.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.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.8546e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3298734706622297 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01059933492975763, dt = 8.736963487693017e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 412.27 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.2%)
Info: cfl dt = 8.737125033224265e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8416e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.323670372838453 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010686704564634561, dt = 8.737125033224265e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 435.64 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.2%)
Info: cfl dt = 8.737309726353583e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8330e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3195527418066866 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010774075814966803, dt = 8.737309726353583e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 419.41 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.2%)
Info: cfl dt = 8.737518238953227e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8130e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3100162159893394 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010861448912230339, dt = 8.737518238953227e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 415.82 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.1%)
Info: cfl dt = 8.73775094324501e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7903e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.299165677622912 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010948824094619872, dt = 8.73775094324501e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 401.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.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    | 4.8439e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.324991427468188 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011036201604052323, dt = 8.738007971843367e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 375.10 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (64.1%)
Info: cfl dt = 8.738289266408744e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9339e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3682230466025587 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011123581683770756, dt = 8.738289266408744e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 471.97 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.1%)
Info: cfl dt = 8.738594615956994e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8379e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.322253330212925 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011210964576434843, dt = 8.738594615956994e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 400.58 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.1%)
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.5662e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1919119958140993 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011298350522594413, dt = 8.738923685910866e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1422.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 386.21 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.7%)
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.8963e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.350445682942854 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011385739759453522, dt = 8.739276039108813e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.4%)
   patch tree reduce : 1552.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 430.61 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.9%)
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.6151e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.215540213491132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011473132519844609, dt = 8.73965115011352e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 424.87 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (72.1%)
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.5546e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.18660778818363 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011560529031345744, dt = 8.740048414257344e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 409.18 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.3%)
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    | 4.8448e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.326011152144951 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011647929515488317, dt = 8.740467154430311e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 418.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.3%)
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.6819e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2479157172639743 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01173533418703262, dt = 8.740906621442522e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 441.53 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.4%)
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.8687e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.337718570224848 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011822743253247045, dt = 8.741380746024249e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 1263.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 402.05 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.1%)
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.8957e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.350803837289299 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011910157060707287, dt = 8.741740739338656e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 391.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.3%)
Info: cfl dt = 8.741793697462328e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9561e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.379906105114454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011997574468100673, dt = 2.4255318993270103e-06
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 439.65 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.0%)
Info: cfl dt = 8.741795308148302e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5696e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.06088446054490713 (tsim/hr)                          [amr::RAMSES][rank=0]
Info: time since start : 239.42852831800002 (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.28 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.64 us    (53.7%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (0.4%)
   patch tree reduce : 862.00 ns  (0.2%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 792.00 ns  (0.2%)
   LB compute        : 369.13 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (61.4%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (0.4%)
   patch tree reduce : 350.00 ns  (0.1%)
   gen split merge   : 370.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 321.00 ns  (0.1%)
   LB compute        : 327.04 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 1983.00 ns (0.6%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1193.00 ns (0.3%)
   patch tree reduce : 351.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 300.00 ns  (0.1%)
   LB compute        : 362.35 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 1824.00 ns (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=False
Info: time since start : 239.601268954 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 417.05 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.3%)
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.7215e+05 | 65536 |      2 | 1.388e-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 :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1834.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 364.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (62.1%)
Info: cfl dt = 0.00011491835702067434                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7384e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.260857510138849 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00012527870714644892, dt = 0.00011491835702067434
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 416.99 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.2%)
Info: cfl dt = 0.00010848394947730952                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7008e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9674329651864593 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00024019706416712327, dt = 5.980293583287676e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 414.39 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.0%)
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.7055e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.545807617676987 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 240.22260436000002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.00030000000000000003, dt = 0.00010594199324641106
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 431.87 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (69.0%)
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.8085e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7983636904150995 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00040594199324641106, dt = 0.00010221985046710813
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1984.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 428.41 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.2%)
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.4325e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.48889133450253 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005081618437135192, dt = 9.183815628648084e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 398.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.5%)
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    | 4.7424e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.392443686391411 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 240.726849858 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0006000000000000001, dt = 9.734706951725335e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 993.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 445.20 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.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.6447e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.483721219535694 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006973470695172534, dt = 9.553994764088308e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 381.82 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.8%)
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.6230e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4262302785949315 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007928870171581364, dt = 9.396019805026513e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 422.70 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.4%)
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.7026e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4272139131738735 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008868472152084015, dt = 1.3152784791598568e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 379.48 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.4%)
Info: cfl dt = 9.234562915172376e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5231e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.32679940261898105 (tsim/hr)                          [amr::RAMSES][rank=0]
Info: time since start : 241.36261547400002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0009000000000000001, dt = 9.234562915172376e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 416.99 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.9%)
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.6389e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3531966942767726 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.000992345629151724, dt = 9.116049315871748e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.7%)
   patch tree reduce : 1523.00 ns (0.2%)
   gen split merge   : 762.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.1%)
   LB compute        : 884.51 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.9%)
Info: cfl dt = 9.032242978932553e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5738e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.290349799051345 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010835061223104414, dt = 9.032242978932553e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 403.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.8%)
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.6183e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2914173203942445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001173828552099767, dt = 2.6171447900233142e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 402.43 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.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    | 4.6594e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6698514710133163 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 242.003917309 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0012000000000000001, dt = 8.95148745074646e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1483.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 457.16 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.3%)
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.5155e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2203428112772836 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012895148745074648, dt = 8.901914242865769e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 375.37 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.9%)
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.7109e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.303622424538715 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013785340169361225, dt = 8.86061467209516e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 434.95 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.3%)
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.6882e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2818797132026245 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001467140163657074, dt = 3.2859836342926003e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 378.31 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.6%)
Info: cfl dt = 8.756279105624041e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6617e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8414500252550332 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 242.64286088100002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0015, dt = 8.756279105624041e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1624.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 436.17 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.1%)
Info: cfl dt = 8.70476067154091e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6939e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2577471683995713 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015875627910562405, dt = 8.70476067154091e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 415.16 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.6%)
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.6132e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.205862651023777 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016746103977716496, dt = 8.677072304520434e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 415.14 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.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.7118e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2458616273031526 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001761381120816854, dt = 3.8618879183146236e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 377.37 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (65.9%)
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.3464e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9220362722648454 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 243.286896312 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0018000000000000002, dt = 8.658534043982387e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.7%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 389.07 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (64.4%)
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.6594e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.216121681750135 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001886585340439824, dt = 8.652201900075913e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (0.5%)
   patch tree reduce : 1553.00 ns (0.1%)
   gen split merge   : 992.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 1139.84 us (98.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.5%)
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.7366e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2511940390914016 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001973107359440583, dt = 8.648834556540598e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 1033.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 371.46 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.5%)
Info: cfl dt = 8.647392502852098e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7630e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.26286852696662 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020595957050059894, dt = 4.040429499401095e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1824.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 374.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.8%)
Info: cfl dt = 8.646377454635924e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7798e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.06085665000745 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 243.914826201 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0021000000000000003, dt = 8.646377454635924e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 446.21 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.0%)
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.6735e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2197287038734244 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0021864637745463594, dt = 8.646568827585427e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 383.38 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (62.4%)
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.6934e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.229209755844094 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0022729294628222136, dt = 8.647084739651214e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 370.83 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.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.5695e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   1.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1705121387555915 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002359400310218726, dt = 4.0599689781274304e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 439.06 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (55.5%)
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    | 4.6785e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0434017929114132 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 244.55969069900002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0024000000000000002, dt = 8.647675832769331e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.92 us    (1.8%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 407.85 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.8%)
Info: cfl dt = 8.648121191276903e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7179e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2411379717346778 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024864767583276937, dt = 8.648121191276903e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 424.25 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.4%)
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.6574e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.212534045522086 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025729579702404625, dt = 8.64853778573483e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 415.70 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.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    | 4.6414e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.205033651757863 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0026594433480978106, dt = 4.0556651902189534e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 385.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.2%)
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.5539e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0145316321256983 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 245.20075611400003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0027, dt = 8.649745430796865e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1613.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 431.87 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.6%)
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.6413e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2052928707595196 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027864974543079686, dt = 8.64896825280737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 388.02 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.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.5443e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1590178099934847 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002872987136836042, dt = 8.649624563934173e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (0.4%)
   patch tree reduce : 1543.00 ns (0.1%)
   gen split merge   : 931.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 1151.98 us (98.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.6%)
Info: cfl dt = 8.651969300185913e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4338e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1066864353444195 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002959483382475384, dt = 4.051661752461607e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 439.31 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.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.6678e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0388783277675202 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 245.84573282600002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.003, dt = 8.652841269271073e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1623.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 414.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (62.0%)
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.6854e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.227037951899655 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030865284126927106, dt = 8.654453917460065e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.3%)
   LB compute        : 375.54 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (62.7%)
Info: cfl dt = 8.65671423442124e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6320e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.202066795523496 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031730729518673114, dt = 8.65671423442124e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1223.00 ns (0.3%)
   LB compute        : 388.62 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.5%)
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    | 4.6777e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.224382855378305 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003259640094211524, dt = 4.035990578847657e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 392.10 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.2%)
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.6738e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0361890293909042 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 246.47437083800003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0033000000000000004, dt = 8.661194581361244e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 429.10 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.3%)
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.6638e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2189030121716953 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033866119458136126, dt = 8.664739901468513e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 390.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.9%)
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.6827e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.228795620929392 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034732593448282977, dt = 8.670004704717195e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 384.32 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.3%)
Info: cfl dt = 8.676245844917356e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6571e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.217956624289039 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0035599593918754697, dt = 4.0040608124530634e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.5%)
   patch tree reduce : 1823.00 ns (0.2%)
   gen split merge   : 912.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.1%)
   LB compute        : 1156.17 us (98.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (67.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    | 4.6475e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0222056106049064 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 247.111016467 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0036000000000000003, dt = 8.679372556665296e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (1.7%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 410.69 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.0%)
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.7376e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.258763881191322 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036867937255666535, dt = 8.686096404390896e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (0.5%)
   patch tree reduce : 1463.00 ns (0.1%)
   gen split merge   : 982.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 988.88 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.5%)
Info: cfl dt = 8.692889213445625e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3921e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.095667458938468 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0037736546896105626, dt = 8.692889213445625e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 1013.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 372.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (63.9%)
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.6554e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.223043170868538 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003860583581745019, dt = 3.941641825498145e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 390.20 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.3%)
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.6467e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0061158239606498 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 247.74997141000003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0039000000000000003, dt = 8.702470269050462e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 414.44 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (61.9%)
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.6914e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2426707598093887 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003987024702690505, dt = 8.708713239366488e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.5%)
   patch tree reduce : 1824.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 367.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.2%)
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.7000e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.248386006217019 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00407411183508417, dt = 8.714632900268238e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 466.99 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (63.4%)
Info: cfl dt = 8.717233868258081e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6270e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2149813035365757 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004161258164086853, dt = 3.874183591314785e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 412.17 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.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.7523e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0113722081637566 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 248.37936862700002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.004200000000000001, dt = 8.718086054567651e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 411.30 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.4%)
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.6117e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2085181297307606 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004287180860545677, dt = 8.719908754607113e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1994.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 434.72 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.8%)
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.6261e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2158929196790202 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004374379948091749, dt = 8.721600979997866e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 399.42 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.7%)
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.6897e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.246820937176431 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004461595957891727, dt = 3.840404210827316e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 408.55 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.2%)
Info: cfl dt = 8.723886216303521e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6331e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9773966705145963 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 249.01794340200001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0045000000000000005, dt = 8.723886216303521e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 454.23 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.4%)
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.6722e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.239006158337684 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004587238862163036, dt = 8.725434464589254e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1233.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 405.04 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (63.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.5965e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   1.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.203098887767591 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046744932068089285, dt = 8.727052331685808e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 378.56 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.7%)
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.4863e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.150707773732465 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004761763730125787, dt = 3.8236269874213774e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 404.90 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.2%)
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.6629e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9793793201835805 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 249.659905769 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0048000000000000004, dt = 8.729484564289757e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 431.65 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (64.5%)
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.6955e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.251589312071705 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004887294845642898, dt = 8.731230521893499e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (0.4%)
   patch tree reduce : 1904.00 ns (0.2%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.1%)
   LB compute        : 1151.88 us (98.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.7%)
Info: cfl dt = 8.732994411527102e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5241e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.169839134834218 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004974607150861833, dt = 8.732994411527102e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 375.48 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.3%)
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.5281e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1722246832932113 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005061937094977104, dt = 3.80629050228962e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 378.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.2%)
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.5988e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9615432076389661 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 250.30867062000002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0051, dt = 8.732022280422373e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 432.74 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.7%)
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.5685e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1913589390747235 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005187320222804224, dt = 8.73131911171658e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1632.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 409.02 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.7%)
Info: cfl dt = 8.730684279559798e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6498e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   1.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.230158290084582 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00527463341392139, dt = 8.730684279559798e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.1%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 420.43 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.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.6417e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2261249831840995 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005361940256716988, dt = 3.8059743283012405e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 392.10 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.9%)
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.6771e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9778262808474861 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 250.94902230300002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0054, dt = 8.7299859702493e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.41 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 471.96 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (71.5%)
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.5925e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2023266546974685 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005487299859702493, dt = 8.729612276464052e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 427.42 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.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.7332e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.269726476514819 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005574595982467134, dt = 8.729359715576613e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.2%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 400.56 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.7%)
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.5293e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1718687163509163 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0056618895796229, dt = 3.811042037710037e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 398.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (62.7%)
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.4157e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9244146128151706 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 251.594706343 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0057, dt = 8.729253550429847e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 429.38 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.1%)
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.4063e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1128855672060625 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005787292535504298, dt = 8.729322330412918e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 400.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.6%)
Info: cfl dt = 8.729537723591171e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7218e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.264166180500065 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005874585758808427, dt = 8.729537723591171e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 404.37 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.9%)
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.7340e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2700662440327215 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0059618811360443395, dt = 3.8118863955660665e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 400.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.7%)
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.6229e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9680027728370968 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 252.238072837 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.006, dt = 8.730126508294311e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (1.6%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 1312.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 420.24 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.2%)
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.5346e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1745899641193374 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006087301265082943, dt = 8.730701095356109e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.1%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 460.48 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.4%)
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.5089e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.162425138511547 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006174608276036504, dt = 8.731453253979241e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 381.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.5%)
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.4784e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1480117776521586 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006261922808576297, dt = 3.807719142370422e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.4%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 355.39 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.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.5424e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9501059318951334 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 252.89317054000003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.006300000000000001, dt = 8.732870256222189e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1703.00 ns (0.3%)
   gen split merge   : 1173.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 496.84 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (67.9%)
Info: cfl dt = 8.7340413618581e-05                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0939e+05 | 65536 |      2 | 1.601e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.96387777023661 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006387328702562223, dt = 8.7340413618581e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (0.9%)
   patch tree reduce : 1513.00 ns (0.2%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 615.67 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.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.2652e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0463522187668635 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006474669116180804, dt = 8.735336161977945e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 377.45 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.5%)
Info: cfl dt = 8.736724728947535e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3573e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.090816239518603 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006562022477800584, dt = 3.797752219941719e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 414.14 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.2%)
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.7042e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9813776728609626 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 253.56963870500002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.006600000000000001, dt = 8.737335543853118e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 419.13 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.3%)
Info: cfl dt = 8.738808823069244e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6407e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2273385498344127 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006687373355438532, dt = 8.738808823069244e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 425.23 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.9%)
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.6334e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2242046204314634 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006774761443669224, dt = 8.740354583684669e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 374.37 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (64.8%)
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.6150e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.215756625632572 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006862164989506071, dt = 3.783501049392946e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 398.31 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.2%)
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    | 4.6827e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9732319472915374 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 254.213419393 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.006900000000000001, dt = 8.74277654356507e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.62 us    (1.7%)
   patch tree reduce : 2.32 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 423.93 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.3%)
Info: cfl dt = 8.744473628748896e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7547e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.283477080426952 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0069874277654356515, dt = 8.744473628748896e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 399.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.3%)
Info: cfl dt = 8.746178803657986e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6148e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2167339038612774 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007074872501723141, dt = 8.746178803657986e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 17.32 us   (3.8%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 418.83 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.5%)
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.6391e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.228834529894629 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007162334289759721, dt = 3.766571024027988e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 420.66 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (81.3%)
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.6458e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9612349198278709 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 254.853546891 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.007200000000000001, dt = 8.746560851334685e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 428.18 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.7%)
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.6272e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.223174362756255 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007287465608513347, dt = 8.746514606534937e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.1%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 470.22 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.9%)
Info: cfl dt = 8.746475848359028e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6543e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2362220150216086 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007374930754578696, dt = 8.746475848359028e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 431.36 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.1%)
Info: cfl dt = 8.74646576091356e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7072e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2615963140126416 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007462395513062286, dt = 3.760448693771422e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 385.47 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.8%)
Info: cfl dt = 8.746479259411267e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6772e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9661631181033173 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 255.485094249 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.007500000000000001, dt = 8.746479259411267e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 2.09 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 448.04 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.6%)
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.7125e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2641367177485994 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007587464792594113, dt = 8.746518173167396e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (0.3%)
   patch tree reduce : 1824.00 ns (0.1%)
   gen split merge   : 852.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.0%)
   LB compute        : 1915.76 us (99.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.0%)
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.6099e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2148571439244997 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007674929974325787, dt = 8.746585126564726e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 374.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.1%)
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.6725e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2449703141925426 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007762395825591435, dt = 3.7604174408565824e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 377.31 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.3%)
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.7659e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9844775242379369 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 256.115055139 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0078000000000000005, dt = 8.746620435019193e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1723.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.2%)
   LB compute        : 634.14 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.2%)
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.6962e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.256345116779812 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007887466204350192, dt = 8.746334123766859e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 398.05 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.7%)
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.6863e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   1.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2515198494531092 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00797492954558786, dt = 8.74597344306839e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 410.09 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.9%)
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.6831e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2499212018577244 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008062389280018544, dt = 3.761071998145682e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1562.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 375.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.1%)
Info: cfl dt = 8.745746686178591e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6870e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9683346134452738 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 256.743624647 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.008100000000000001, dt = 8.745746686178591e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 1312.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 423.67 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.1%)
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.6709e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2439934197665963 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008187457466861787, dt = 8.745751693275464e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1313.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 377.25 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.8%)
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.5442e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1831374742780647 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008274914983794542, dt = 8.745884009338847e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 411.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.6%)
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.6842e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.250405539427791 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008362373823887931, dt = 3.7626176112070045e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 365.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.4%)
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.7701e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9859202614033792 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 257.37634331000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.008400000000000001, dt = 8.746203189581876e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 448.26 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.1%)
Info: cfl dt = 8.746475061979321e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5727e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1969218858754114 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00848746203189582, dt = 8.746475061979321e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 367.08 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.0%)
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    | 4.7690e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2912827808135643 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008574926782515613, dt = 8.746785784543684e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 380.16 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (65.2%)
Info: cfl dt = 8.747133810360284e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3503e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0902244032152892 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00866239464036105, dt = 3.760535963895188e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 404.88 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.3%)
Info: cfl dt = 8.747290870934661e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5817e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9464557369067168 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 258.020812447 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.008700000000000001, dt = 8.747290870934661e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 410.71 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.3%)
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.5761e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.198844702638528 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008787472908709348, dt = 8.747688298708604e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1883.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 401.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.7%)
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.6471e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   1.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2330288479582645 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008874949791696434, dt = 8.748117666138426e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 449.65 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.6%)
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.6316e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.225712956891663 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008962430968357818, dt = 3.7569031642183115e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 408.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.7%)
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.6432e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9582237140768112 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 258.655522389 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.009000000000000001, dt = 8.748773981395722e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.5%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 446.20 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (71.0%)
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.4438e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   2.3% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1356165608922444 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009087487739813958, dt = 8.749268073995033e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 393.99 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.7%)
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.5298e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1770958407819876 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009174980420553909, dt = 8.749782694168411e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 413.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.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.6987e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2583748767412026 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009262478247495593, dt = 3.7521752504408173e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 378.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (64.1%)
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.7113e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9710694531245465 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 259.309298263 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.009300000000000001, dt = 8.750535929354954e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.36 us    (1.5%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 459.18 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (71.9%)
Info: cfl dt = 8.75108481980247e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5501e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.187126796747601 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00938750535929355, dt = 8.75108481980247e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 408.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.8%)
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.7062e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   1.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2623061812897216 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009475016207491575, dt = 8.751642874206313e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 401.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.1%)
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.4967e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1617557557601774 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009562532636233639, dt = 3.746736376636188e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 442.44 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.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.6505e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9571436851722244 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 259.95728899200003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.009600000000000001, dt = 8.752496988872681e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1764.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 434.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.9%)
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.6056e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2143289076800534 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009687524969888728, dt = 8.753130979975445e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (0.7%)
   patch tree reduce : 1603.00 ns (0.2%)
   gen split merge   : 962.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.1%)
   LB compute        : 714.88 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.5%)
Info: cfl dt = 8.753779367069832e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5973e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2104706821770117 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009775056279688481, dt = 8.753779367069832e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 376.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.1%)
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.6352e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.228861452040096 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00986259407335918, dt = 3.74059266408204e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.1%)
   patch tree reduce : 1664.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 457.43 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.3%)
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.4160e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9073805994354003 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 260.602055785 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0099, dt = 8.754752373943097e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 416.60 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.7%)
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.7488e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2837698704536704 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009987547523739431, dt = 8.755207459720286e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 401.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.0%)
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.7673e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2927857490566272 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010075099598336634, dt = 8.754991032784403e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 369.11 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.7%)
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.6938e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.257373269416032 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010162649508664478, dt = 3.7350491335522845e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 376.15 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.3%)
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.7153e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   1.3% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9674567529667528 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 261.227764633 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0102, dt = 8.754734136690713e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 415.50 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.8%)
Info: cfl dt = 8.754591438504014e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7484e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.283558524324753 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010287547341366908, dt = 8.754591438504014e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 388.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.7%)
Info: cfl dt = 8.75448775764747e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6535e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2378909561571145 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010375093255751948, dt = 8.75448775764747e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 405.62 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.6%)
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.7198e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2697287415007583 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010462638133328423, dt = 3.73618666715779e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 398.27 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.6%)
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.7450e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9738465230648382 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 261.860474725 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0105, dt = 8.754385493427577e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 430.03 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.4%)
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.6741e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2477396802898473 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010587543854934276, dt = 8.754345552078403e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 398.36 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.7%)
Info: cfl dt = 8.754344182565297e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6514e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2368154215986378 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010675087310455059, dt = 8.754344182565297e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 394.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.9%)
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.7131e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.266503591311257 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010762630752280712, dt = 3.736924771928843e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.22 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.67 us    (88.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.6105e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.946412301405915 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 262.49703730600004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0108, dt = 8.754419639018969e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 416.46 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.4%)
Info: cfl dt = 8.754523352746775e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6605e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2412107166435424 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01088754419639019, dt = 8.754523352746775e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.0%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 506.64 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.5%)
Info: cfl dt = 8.754672013981818e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7506e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.284581814814986 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010975089429917657, dt = 8.754672013981818e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.5%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 363.09 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.3%)
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.8245e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.320150411739767 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011062636150057476, dt = 3.7363849942524674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 409.74 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.9%)
Info: cfl dt = 8.754979028402775e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7119e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9671055349790868 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 263.117996471 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0111, dt = 8.754979028402775e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (1.5%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 437.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.6%)
Info: cfl dt = 8.755209759668229e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2843e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.060412224914974 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011187549790284029, dt = 8.755209759668229e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 374.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (63.0%)
Info: cfl dt = 8.755420099093397e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7505e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.284681295849464 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01127510188788071, dt = 8.755420099093397e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 375.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.9%)
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    | 4.6663e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.244274771945988 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011362656088871645, dt = 3.73439111283555e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 373.09 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.3%)
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.7084e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9658591506804166 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 263.761135458 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0114, dt = 8.75575370881894e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 440.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.1%)
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.7084e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   1.3% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.264613214163647 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01148755753708819, dt = 8.755993967586703e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.5%)
   patch tree reduce : 1784.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.3%)
   LB compute        : 354.49 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.13 us   (94.4%)
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.5611e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.193797439029257 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011575117476764058, dt = 8.756235779612817e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 993.00 ns  (0.3%)
   LB compute        : 374.19 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.3%)
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.6753e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.248778105311938 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011662679834560187, dt = 3.73201654398133e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 410.50 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.4%)
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.6606e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9554465129779477 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 264.398186408 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0117, dt = 8.756578148808492e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 437.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.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.6477e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2355885952959 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011787565781488086, dt = 8.756824449841148e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.3%)
   patch tree reduce : 1483.00 ns (0.1%)
   gen split merge   : 1112.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.0%)
   LB compute        : 2.05 ms    (99.0%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (73.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.6088e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2169360099342126 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011875134025986497, dt = 8.757072055445958e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.5%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 372.13 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.2%)
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.7338e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2771537508054935 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011962704746540957, dt = 3.729525345904337e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 404.61 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.5%)
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.7344e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9699370848603008 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 265.031809346 (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  19.09 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     : 12.53 us   (78.8%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1834.00 ns (0.3%)
   patch tree reduce : 1091.00 ns (0.2%)
   gen split merge   : 811.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.1%)
   LB compute        : 691.96 us  (98.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (61.1%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (0.2%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 290.00 ns  (0.0%)
   LB compute        : 663.29 us  (98.6%)
   LB move op cnt    : 0
   LB apply          : 2.67 us    (0.4%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (63.8%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1644.00 ns (0.3%)
   patch tree reduce : 541.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 301.00 ns  (0.1%)
   LB compute        : 547.52 us  (98.4%)
   LB move op cnt    : 0
   LB apply          : 2.20 us    (0.4%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running none hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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    (1.5%)
   patch tree reduce : 1884.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 566.27 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (66.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0130e+05 | 65536 |      2 | 2.175e-01 | 0.0% |   2.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.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 2.12 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1123.00 ns (0.2%)
   LB compute        : 506.29 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.8608e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1764299313381015 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00015641475933639762, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.1%)
   patch tree reduce : 1693.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 500.58 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.9766e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.27595214230876 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00031282951867279523, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.1%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 477.72 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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    | 5.0047e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.300074721952841 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004692442780091929, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.3%)
   patch tree reduce : 2.06 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 450.48 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0098e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   1.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.30445110753579 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006256590373455905, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.2%)
   LB compute        : 488.71 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.9947e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.291482915281058 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007820737966819881, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 391.82 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9837e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.282065241226987 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009384885560183856, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 384.89 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9715e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.271614950878874 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010949033153547832, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 372.70 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (62.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2177e+05 | 65536 |      2 | 1.256e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.4831040496954 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001251318074691181, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 360.76 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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    | 5.1874e+05 | 65536 |      2 | 1.263e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.457100765457076 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014077328340275786, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 418.28 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1765e+05 | 65536 |      2 | 1.266e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.447738757058137 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015641475933639763, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 394.82 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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    | 5.2051e+05 | 65536 |      2 | 1.259e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.472317226917854 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001720562352700374, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 364.78 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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    | 5.1838e+05 | 65536 |      2 | 1.264e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.453970306241769 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018769771120367717, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 379.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1849e+05 | 65536 |      2 | 1.264e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.454921053627637 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002033391871373169, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 392.81 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1638e+05 | 65536 |      2 | 1.269e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.436840957278755 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002189806630709567, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 410.91 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7084e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0455246813568495 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023462213900459646, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 438.96 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.9578e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.259836793918856 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025026361493823623, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1502.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 412.91 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9787e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.277732316979282 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00265905090871876, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.4%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 348.99 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8758e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.189385801701769 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028154656680551577, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.4%)
   patch tree reduce : 1814.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 359.79 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0153e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.309225905822663 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0029718804273915554, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 382.43 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
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.4478e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.821640055423153 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003128295186727953, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 386.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8809e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.193754643496915 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003284709946064351, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.1%)
   patch tree reduce : 1602.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 457.51 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.8995e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2097389877745055 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034411247054007485, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.1%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 458.01 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.8938e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.204782103092862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003597539464737146, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 394.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9687e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.269176778205126 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003753954224073544, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.0%)
   patch tree reduce : 1924.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 471.44 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9106e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.219263711678658 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003910368983409941, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 440.93 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9791e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2780716479681 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004066783742746338, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (0.7%)
   patch tree reduce : 1693.00 ns (0.2%)
   gen split merge   : 862.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.2%)
   LB compute        : 754.02 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (70.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5459e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9058590723824054 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004223198502082736, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 444.35 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9807e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2794614483349385 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004379613261419133, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 391.15 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.8016e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.125620239807266 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00453602802075553, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 432.76 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0755e+05 | 65536 |      2 | 1.291e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.360923689526695 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046924427800919275, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 19.18 us   (4.2%)
   LB compute        : 423.09 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (62.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0003e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.296310788329932 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004848857539428325, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 369.66 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (62.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0937e+05 | 65536 |      2 | 1.287e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.376550614515937 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005005272298764722, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 379.16 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0187e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.3120887402311645 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005161687058101119, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 407.90 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0659e+05 | 65536 |      2 | 1.294e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.352705618770903 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0053181018174375165, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 388.12 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0696e+05 | 65536 |      2 | 1.293e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.355828323774681 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005474516576773914, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 360.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0378e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.328531819751583 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005630931336110311, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (0.8%)
   patch tree reduce : 1513.00 ns (0.2%)
   gen split merge   : 862.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.1%)
   LB compute        : 665.01 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.9950e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.291798949099562 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005787346095446708, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (0.8%)
   patch tree reduce : 1663.00 ns (0.2%)
   gen split merge   : 761.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 689.30 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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    | 5.0052e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.300528520176211 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005943760854783106, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 377.65 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9980e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.294326145327423 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006100175614119503, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 399.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9841e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.282368425561483 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0062565903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 2.18 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 429.13 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.9731e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.27293771906021 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006413005132792297, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1272.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 435.61 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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    | 5.0217e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.314691635289614 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006569419892128695, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 457.30 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8813e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.194029082241112 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006725834651465092, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 390.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.8817e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.194378070512738 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006882249410801489, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 393.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8581e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.174138289464797 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0070386641701378864, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1071.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 411.01 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.8183e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.139939830604414 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007195078929474284, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 370.75 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.7601e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.089906654866476 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007351493688810681, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 406.51 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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    | 5.0347e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.325876345856051 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007507908448147078, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 429.50 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.9967e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.293252839574452 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0076643232074834755, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.1%)
   patch tree reduce : 1713.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 472.11 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.7570e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.087244636994075 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007820737966819874, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 389.06 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9694e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.269788318670854 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007977152726156272, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.5%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 372.32 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.7529e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0837859024514405 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00813356748549267, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 399.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.9402e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.244675850905111 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008289982244829068, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 359.73 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9964e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.292974099022755 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008446397004165466, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 403.05 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.9392e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.24379768385026 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008602811763501864, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 417.79 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.8857e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.197834097031605 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008759226522838262, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.5%)
   patch tree reduce : 1783.00 ns (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 364.43 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9445e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.24835366261389 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00891564128217466, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.2%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 1001.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 451.22 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9258e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.232283012924317 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009072056041511059, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.2%)
   patch tree reduce : 2.15 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 459.00 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.8923e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.203549985003209 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009228470800847457, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (0.6%)
   patch tree reduce : 1703.00 ns (0.2%)
   gen split merge   : 952.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 871.52 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.8214e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.142563279996621 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009384885560183855, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 412.85 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7796e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.106667549692625 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009541300319520253, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1163.00 ns (0.3%)
   LB compute        : 431.51 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.9726e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2724919615208155 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009697715078856651, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1964.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 470.04 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8191e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.140616230118119 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00985412983819305, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 2.01 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 439.78 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
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.8801e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.19303151670167 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010010544597529447, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (0.9%)
   patch tree reduce : 1794.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.1%)
   LB compute        : 583.43 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 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.4811e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8502224131313416 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010166959356865846, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 406.07 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8949e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.20575976083919 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010323374116202244, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 379.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9137e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.221867611091684 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010479788875538642, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 403.88 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.9541e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.256614865536965 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01063620363487504, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 437.79 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.9654e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.266308752089711 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010792618394211438, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 388.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.9249e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.231567431676139 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010949033153547836, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 395.08 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9490e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.252218693413501 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011105447912884234, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 440.48 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.9837e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.282061724410337 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011261862672220633, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 397.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 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.9242e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.230958683219372 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01141827743155703, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.2%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 1001.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.2%)
   LB compute        : 454.31 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.9084e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2173371836049025 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011574692190893429, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 400.75 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (62.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9680e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.268585572111199 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011731106950229827, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 377.22 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.9793e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.278272977514339 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011887521709566225, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.4%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 411.59 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9929e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.289934884843643 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012043936468902623, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 402.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9307e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.236542286365322 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012200351228239021, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 387.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.9245e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.231217346527224 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01235676598757542, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 1783.00 ns (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 375.14 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.9626e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.263921736878862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012513180746911818, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 440.13 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8791e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.192177457899531 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012669595506248216, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 407.79 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.9847e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.28287585874025 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012826010265584614, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 2.06 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 464.20 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9210e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.228143125201218 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012982425024921012, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 382.33 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 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.9472e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.250690159491006 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01313883978425741, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 433.81 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.9075e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.216555066582032 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013295254543593808, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 430.76 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.9558e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.258103453522294 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013451669302930206, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 403.37 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.9693e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.269644635752269 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013608084062266605, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.6%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 375.80 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.6638e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.007232303555522 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013764498821603003, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1193.00 ns (0.3%)
   LB compute        : 424.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.9223e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.229293834369471 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0139209135809394, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 461.35 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.9771e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.276407943117411 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014077328340275799, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 384.28 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9447e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.248538581188494 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014233743099612197, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 385.87 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.9167e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.224477864081483 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014390157858948595, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 432.37 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.8547e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.171192244031836 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014546572618284993, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.2%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 454.55 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.9628e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.26413778537741 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014702987377621391, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 417.16 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9771e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.276396543665198 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01485940213695779, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 385.50 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8747e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.188374181185782 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015015816896294188, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 377.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.9731e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2729272459818795 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015172231655630586, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 393.63 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.9651e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.266080363335315 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015328646414966984, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 389.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.9677e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.268264276856986 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015485061174303382, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.0%)
   patch tree reduce : 1934.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 486.13 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.9493e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.252521391240412 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01564147593363978, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 378.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.9418e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.246038943378319 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015797890692976175, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 421.72 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.6186e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.968346442257437 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01595430545231257, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 376.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.79 us    (86.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.9478e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.251210621622839 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016110720211648968, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 375.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9452e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.249007536855092 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016267134970985364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 394.35 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9558e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2580824594039814 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01642354973032176, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 419.57 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.9729e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.272804426219763 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016579964489658157, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.1%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 448.91 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0426e+05 | 65536 |      2 | 1.300e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.332686563892215 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016736379248994553, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 414.54 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.9576e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.259626626661681 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01689279400833095, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 390.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9881e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2858627985124915 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017049208767667346, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 381.23 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9854e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.283479697694404 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017205623527003742, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 393.10 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.9826e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.281133747229699 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01736203828634014, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (0.7%)
   patch tree reduce : 1613.00 ns (0.2%)
   gen split merge   : 1132.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.1%)
   LB compute        : 768.74 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0005e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.296456599456743 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017518453045676535, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 17.59 us   (4.2%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 384.32 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.9674e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.26806793199962 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01767486780501293, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 427.23 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9899e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.28738663954414 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017831282564349328, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 443.58 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9977e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.294105291441882 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017987697323685724, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 376.32 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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    | 5.0029e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.298518847239002 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01814411208302212, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 381.74 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9452e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.248993718045618 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018300526842358517, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 1203.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 377.42 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0149e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.30885695168881 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018456941601694914, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.04 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 453.77 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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    | 5.1056e+05 | 65536 |      2 | 1.284e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.386783751913887 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01861335636103131, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 386.43 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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    | 5.0823e+05 | 65536 |      2 | 1.290e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.366730194365147 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018769771120367706, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1754.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 363.19 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.7797e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.106783130537005 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018926185879704103, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 400.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9521e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.254883406166688 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0190826006390405, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 1021.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 451.20 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (63.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9056e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.214936299649437 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019239015398376896, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 373.33 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9247e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.231364718637352 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019395430157713292, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 413.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.8944e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.205323260412254 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01955184491704969, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 387.92 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9476e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.251055669887508 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019708259676386085, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 383.75 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.8663e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.181142066492711 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01986467443572248, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 376.13 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.9387e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.243409596779094 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020021089195058878, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 1263.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 405.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 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.9393e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.243895972129069 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020177503954395274, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 387.73 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.9469e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.250426190328641 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02033391871373167, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 376.31 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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    | 5.0079e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.302833801052446 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020490333473068067, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 409.63 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.9742e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.273851992894552 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020646748232404463, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 372.88 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9699e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.270204173008998 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02080316299174086, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.0%)
   patch tree reduce : 1643.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 508.85 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.9324e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.237982258202337 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020959577751077256, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 412.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (61.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9934e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.290401223092653 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021115992510413652, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 431.08 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9990e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.295159038238712 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02127240726975005, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 439.97 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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    | 5.0011e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.297029810464346 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021428822029086445, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 445.28 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.9977e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.294048575219302 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02158523678842284, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 430.31 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.9854e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2835002261286 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021741651547759238, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 368.87 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9687e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2691945156234326 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021898066307095634, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 390.81 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
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    | 5.1010e+05 | 65536 |      2 | 1.285e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.382814264426537 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02205448106643203, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 390.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9614e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.262885486386375 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022210895825768427, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 393.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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    | 5.0342e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.325480512021087 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022367310585104824, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.1%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 446.61 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1282e+05 | 65536 |      2 | 1.278e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.406201776149242 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02252372534444122, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 377.58 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (63.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0777e+05 | 65536 |      2 | 1.291e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.362858556314834 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022680140103777616, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 441.72 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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    | 5.1439e+05 | 65536 |      2 | 1.274e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.4196668705606434 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022836554863114013, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 431.12 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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    | 5.1816e+05 | 65536 |      2 | 1.265e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.452089634908713 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02299296962245041, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.2%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 438.92 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9915e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.288783512364223 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023149384381786806, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 432.08 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.9640e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2651638221305115 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023305799141123202, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 399.07 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.8995e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.209678530128235 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0234622139004596, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1983.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 448.66 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.9514e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.254290398495208 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023618628659795995, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 375.85 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.9899e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.287386606900013 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02377504341913239, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1001.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 384.86 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9247e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.231394257885377 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023931458178468788, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1994.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 452.37 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.9273e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.233618994282645 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024087872937805184, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 402.54 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.9247e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.23133184120795 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02424428769714158, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.2%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 433.42 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.9602e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.261872351310015 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024400702456477977, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 389.33 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9390e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.243665179393967 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024557117215814373, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1973.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 421.22 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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.9945e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.291363670565784 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02471353197515077, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.1%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 455.37 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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    | 5.0268e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.3191220566027075 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024869946734487166, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 391.11 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.9542e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.256694473461348 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025026361493823562, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (0.5%)
   patch tree reduce : 1573.00 ns (0.1%)
   gen split merge   : 1011.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 1133.49 us (98.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8599e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1756994200952215 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02518277625315996, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 384.33 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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    | 5.0389e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.329457225844438 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025339191012496355, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 390.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9624e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.263789942224839 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02549560577183275, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1233.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 408.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9924e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.289527595985283 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025652020531169148, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 405.18 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.9464e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.250046834192997 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025808435290505544, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 387.67 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.9567e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.258861247929113 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02596485004984194, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 390.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
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.9481e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.251449169239876 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026121264809178337, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 390.31 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.9536e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.256178587191126 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026277679568514734, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (65.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0007e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.296682842650377 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02643409432785113, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.1%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 451.43 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9105e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.219191915248097 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026590509087187526, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1973.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 404.81 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 22.72 us   (5.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.9311e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.236861820068264 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026746923846523923, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 398.21 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9384e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.243169520434775 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02690333860586032, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 406.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.9662e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.267021775800102 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027059753365196716, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 384.51 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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    | 5.0094e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.304097182907148 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027216168124533112, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 466.26 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.9066e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.215818785076287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02737258288386951, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 415.30 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8375e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.156429678080495 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027528997643205905, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 451.30 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.6807e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.021720940523025 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0276854124025423, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 409.75 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.6017e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9538572672914842 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027841827161878697, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 468.81 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8571e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.173239298141907 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027998241921215094, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1143.00 ns (0.3%)
   LB compute        : 427.23 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
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.8615e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.177062811996265 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02815465668055149, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 381.48 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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.9030e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.212721820995275 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028311071439887887, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 387.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.9497e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.252878479785265 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028467486199224283, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 398.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1832e+05 | 65536 |      2 | 1.264e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.4534734757346905 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02862390095856068, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 406.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.9740e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.273688509875907 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028780315717897076, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 399.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9285e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.234621669286043 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028936730477233472, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.0%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 456.86 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2479e+05 | 65536 |      2 | 1.249e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.509032004011874 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02909314523656987, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 436.63 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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.9487e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.252002566690097 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029249559995906265, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 452.33 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.8721e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.186177746152196 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02940597475524266, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 386.72 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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    | 5.0981e+05 | 65536 |      2 | 1.285e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.380364070422017 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029562389514579058, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 458.17 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.9021e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.211915675021434 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029718804273915454, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 406.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8236e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.144513687101575 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02987521903325185, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 425.02 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.8514e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.168338910317272 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030031633792588247, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 404.80 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.9502e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.253231965927619 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030188048551924643, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 401.10 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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    | 5.0084e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.3032877543118095 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03034446331126104, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.44 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.8897e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.201305196111173 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030500878070597436, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 387.93 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.9610e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.262560273068734 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030657292829933833, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 376.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9212e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.228320255837831 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03081370758927023, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 416.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8160e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.13799840798679 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030970122348606625, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 439.36 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9352e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.240395106407137 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031126537107943022, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 401.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (62.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9305e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.23633919203165 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03128295186727942, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 415.44 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.8233e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.144204361908362 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03143936662661582, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.1%)
   patch tree reduce : 1542.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 474.72 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.8312e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.151062979669572 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03159578138595222, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 390.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.9454e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2491283189996745 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03175219614528862, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 480.01 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9706e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.270838229089034 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03190861090462502, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.2%)
   patch tree reduce : 1632.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 447.65 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.9615e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.262957615729478 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03206502566396142, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 396.00 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.8873e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.199224760492915 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03222144042329782, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 381.23 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8453e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.163100247109232 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03237785518263422, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 385.16 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9845e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.282761196142339 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03253426994197062, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 438.80 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8697e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.184073585629767 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03269068470130702, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.1%)
   patch tree reduce : 1644.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 442.62 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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.8676e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.182342505132132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03284709946064342, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.56 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9855e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.28361518899639 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03300351421997982, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 432.12 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.9821e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.280711530978934 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03315992897931622, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 388.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.9131e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.221391303358811 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033316343738652617, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 362.32 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9494e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.252553282031137 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033472758497989016, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 400.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6538e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9985883952394086 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033629173257325416, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 417.67 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.9883e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.286019743538619 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033785588016661816, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 393.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.9423e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.246470135111276 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033942002775998216, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 367.52 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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    | 5.0112e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.305643897138583 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034098417535334616, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 390.10 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.9704e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.27061272360985 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034254832294671016, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1532.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 443.51 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9498e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2529194983822425 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034411247054007416, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 398.36 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.9889e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.286563969545121 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034567661813343815, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 393.26 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9277e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.233912555406349 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034724076572680215, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 388.58 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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    | 5.0435e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.333396471002578 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034880491332016615, dt = 0.00011950866798338816
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 385.35 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.8807e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2040559597623393 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 319.520556223 (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.18 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (58.4%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1784.00 ns (0.4%)
   patch tree reduce : 911.00 ns  (0.2%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 802.00 ns  (0.2%)
   LB compute        : 423.84 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.7%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (63.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (0.3%)
   patch tree reduce : 441.00 ns  (0.1%)
   gen split merge   : 380.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 270.00 ns  (0.1%)
   LB compute        : 444.66 us  (98.2%)
   LB move op cnt    : 0
   LB apply          : 2.14 us    (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (0.4%)
   patch tree reduce : 450.00 ns  (0.1%)
   gen split merge   : 370.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 271.00 ns  (0.1%)
   LB compute        : 398.94 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 1944.00 ns (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.3%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 591.00 ns  (0.1%)
   LB compute        : 404.68 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.5779e+05 | 65536 |      2 | 1.432e-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.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 413.04 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.9542e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.256690612054346 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00015641475933639762, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 356.40 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.9091e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.217974245721213 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00031282951867279523, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.1%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 477.42 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6954e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.034337853994045 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004692442780091929, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.1%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 453.39 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.7624e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.091880690546033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006256590373455905, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 378.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.5172e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.881246107151128 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007820737966819881, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 371.92 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.9532e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.255867101858996 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009384885560183856, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 368.43 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.9375e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.242364497320059 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010949033153547832, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 423.73 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.9079e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.216928309210488 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001251318074691181, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 402.07 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.9178e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.225439590732869 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014077328340275786, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 1213.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 390.23 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8102e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.13294846370635 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015641475933639763, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 387.61 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.8838e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.196256656523004 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001720562352700374, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 383.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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    | 5.0085e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.303363230655037 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018769771120367717, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 409.27 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.8614e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.177000500615879 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002033391871373169, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (0.9%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 568.51 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.8539e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.170508413475863 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002189806630709567, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.6%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 358.69 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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    | 5.1580e+05 | 65536 |      2 | 1.271e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.431823281343642 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023462213900459646, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.1%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 496.96 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.9083e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.217281150554769 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025026361493823623, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 379.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.9011e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.211077872447112 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00265905090871876, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 380.60 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.9515e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.254397691477422 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028154656680551577, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 452.05 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.9142e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.222301885721548 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0029718804273915554, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 439.16 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8240e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.144876145277299 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003128295186727953, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 427.63 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.8414e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.159827666610454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003284709946064351, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 373.97 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (62.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8891e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2007994821758174 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034411247054007485, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 424.66 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (70.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9142e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.22234412130565 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003597539464737146, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 404.05 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8559e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.17223320279835 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003753954224073544, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 392.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8667e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.181531609452686 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003910368983409941, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 380.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (62.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5423e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.902806645067348 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004066783742746338, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 381.97 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.9110e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.219548107721524 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004223198502082736, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 401.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.8391e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.157773575338283 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004379613261419133, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.1%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 446.14 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.8717e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.185787119295335 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00453602802075553, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.1%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 469.13 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (62.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8004e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1245371804937605 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046924427800919275, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.5%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 394.39 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.8883e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.200113711100374 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004848857539428325, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.1%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 466.10 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8599e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.175641732148437 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005005272298764722, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 397.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.8816e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.194288498293385 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005161687058101119, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 387.58 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9134e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.221615565110442 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0053181018174375165, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 405.58 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (62.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9015e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.211437830312508 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005474516576773914, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 406.05 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.8616e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1771484273325195 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005630931336110311, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 372.83 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.8862e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1982866040743145 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005787346095446708, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 379.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (63.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9435e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.247529497879555 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005943760854783106, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 401.87 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.8773e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.190613932956038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006100175614119503, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 375.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 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.8901e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.201624954137905 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0062565903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 1272.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 422.61 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8945e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2054416031616055 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006413005132792297, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 1133.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 495.33 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.8008e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.124915552008603 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006569419892128695, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 389.66 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.8168e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.138663100785292 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006725834651465092, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 447.87 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 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.8967e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2072949063004454 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006882249410801489, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 401.46 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9047e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.214216699888097 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0070386641701378864, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 446.09 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9383e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.243009846977472 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007195078929474284, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 396.69 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.8782e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.191432411252846 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007351493688810681, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 380.50 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.8186e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.140185414270463 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007507908448147078, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 405.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.8558e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1721933239619835 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0076643232074834755, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 384.56 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.1%)
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    | 4.8423e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.160562533319403 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007820737966819874, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (0.3%)
   patch tree reduce : 1493.00 ns (0.1%)
   gen split merge   : 961.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.1%)
   LB compute        : 1621.12 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4779e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8474779748402166 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007977152726156272, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 412.81 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.8145e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.136680238226551 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00813356748549267, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 433.22 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.8637e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.178912797576165 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008289982244829068, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 405.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (63.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8370e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.156014031268821 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008446397004165466, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.30 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.8267e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.147146389785368 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008602811763501864, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.1%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 7.61 us    (1.6%)
   LB compute        : 452.01 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.8522e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1690607674265445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008759226522838262, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 400.47 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7625e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.092035287850843 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00891564128217466, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 398.60 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1082e+05 | 65536 |      2 | 2.108e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.670597858733162 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009072056041511059, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 396.41 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.8432e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1613466486745265 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009228470800847457, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 452.25 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8826e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.195188862173659 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009384885560183855, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 377.33 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.8888e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.20052374934319 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009541300319520253, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 412.63 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 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.8793e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.192365040688932 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009697715078856651, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 384.01 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.8443e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.162267782013039 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00985412983819305, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 392.18 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8867e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.198714600612901 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010010544597529447, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 420.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.7793e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.106464827200547 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010166959356865846, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 423.57 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.7593e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.089239682054952 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010323374116202244, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 427.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.8680e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.182658388891141 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010479788875538642, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 376.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.7880e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.113887181891266 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01063620363487504, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 396.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8488e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.166154925580005 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010792618394211438, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 376.55 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.8655e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1804743986179975 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010949033153547836, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 357.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.9157e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.223658437368273 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011105447912884234, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 410.37 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8498e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1670315011814605 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011261862672220633, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 408.52 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.8880e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1997995394382315 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01141827743155703, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 449.57 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8611e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.176744240983349 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011574692190893429, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 403.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9204e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2277039344579075 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011731106950229827, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 427.29 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.7885e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.114372004812678 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011887521709566225, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 421.07 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (62.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8498e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.167005814046955 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012043936468902623, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.1%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 437.67 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.8989e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.209231021307807 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012200351228239021, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 402.70 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.9349e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.240154828238928 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01235676598757542, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (0.8%)
   patch tree reduce : 1443.00 ns (0.2%)
   gen split merge   : 872.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 668.98 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.8220e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.143095764283211 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012513180746911818, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1223.00 ns (0.3%)
   LB compute        : 374.16 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.8877e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.199605997506006 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012669595506248216, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 379.47 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.8534e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.170137814486039 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012826010265584614, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 1113.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 421.26 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.7977e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.122245050573787 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012982425024921012, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 407.93 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.8485e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.165858788545438 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01313883978425741, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.5%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 378.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.9440e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.24792038987069 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013295254543593808, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 376.05 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.7883e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.114139543678213 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013451669302930206, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 1412.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 358.20 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8550e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.171472112317159 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013608084062266605, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 408.27 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.9045e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.213991425961003 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013764498821603003, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 414.70 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.8690e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.183537883125797 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0139209135809394, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1632.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 399.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.9211e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.228297744596764 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014077328340275799, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 452.66 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9144e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.222473271186042 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014233743099612197, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.2%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 450.49 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (62.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5870e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.941215812159094 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014390157858948595, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 399.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.8670e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.181743767948959 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014546572618284993, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 382.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (61.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8768e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.19020090045272 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014702987377621391, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 381.96 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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    | 5.0412e+05 | 65536 |      2 | 1.300e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.331471815770984 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01485940213695779, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 368.24 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (63.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8949e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.205781467298092 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015015816896294188, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 401.84 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.8478e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.165322840727056 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015172231655630586, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 384.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.8368e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.15580662242489 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015328646414966984, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 390.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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    | 4.8281e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.148394649758294 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015485061174303382, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 386.80 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.4355e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.811071979371415 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01564147593363978, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 370.76 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8616e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.177133584610514 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015797890692976175, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.2%)
   LB compute        : 470.02 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
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.7663e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0952604365107135 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01595430545231257, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 451.59 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8839e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.196278952971528 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016110720211648968, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 366.59 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.9546e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.257025550803766 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016267134970985364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 379.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.9000e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.210120121784622 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01642354973032176, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 436.18 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.8782e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1914034897110986 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016579964489658157, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 406.96 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.8671e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.181871098226446 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016736379248994553, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 404.93 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.9137e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.221920885493971 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01689279400833095, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 377.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8442e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.162186498187478 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017049208767667346, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.5%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 371.33 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.8400e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.158582744889886 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017205623527003742, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1492.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 397.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.8516e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.168567970255172 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01736203828634014, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 378.43 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.8378e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.156670717072395 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017518453045676535, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 399.89 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.8144e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.136580836533889 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01767486780501293, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 428.48 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8787e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.191871930527674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017831282564349328, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 418.75 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.9282e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.234388222297183 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017987697323685724, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 420.57 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.8654e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1804163614139656 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01814411208302212, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 379.66 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.9018e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.211712698266166 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018300526842358517, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 412.43 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.9337e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.239131787602252 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018456941601694914, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 1203.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 386.67 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.8783e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1914599916061945 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01861335636103131, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 400.69 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.9417e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2459845142888994 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018769771120367706, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 429.71 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9091e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.217942302737324 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018926185879704103, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 395.06 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.9072e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.216335193817591 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0190826006390405, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 371.32 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9273e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.233589360304827 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019239015398376896, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (0.3%)
   patch tree reduce : 1503.00 ns (0.1%)
   gen split merge   : 931.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.1%)
   LB compute        : 1690.74 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8771e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.190437546110214 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019395430157713292, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 431.49 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9681e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.26866527246941 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01955184491704969, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 415.68 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.9197e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.227038481217824 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019708259676386085, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 377.97 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9391e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.243690988809327 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01986467443572248, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 370.66 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (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.8950e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.205874703956189 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020021089195058878, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 377.99 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.9837e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.282064459711677 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020177503954395274, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 377.35 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.8963e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.206952314499597 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02033391871373167, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 373.29 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.7629e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.092351625760334 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020490333473068067, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1442.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 409.11 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.9060e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.215312316649973 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020646748232404463, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (0.4%)
   patch tree reduce : 1963.00 ns (0.1%)
   gen split merge   : 871.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.1%)
   LB compute        : 1329.94 us (98.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5827e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9375063317358516 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02080316299174086, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 398.34 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 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.4348e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8104638603786203 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020959577751077256, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 382.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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.1782e+05 | 65536 |      2 | 1.569e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.589926669233973 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021115992510413652, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 385.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7911e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.116536178415993 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02127240726975005, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 395.71 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7317e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0655319293272365 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021428822029086445, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 380.99 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6880e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.027974395183123 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02158523678842284, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 393.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (62.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8815e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.19427893831734 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021741651547759238, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 400.81 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.8668e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.18158983289196 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021898066307095634, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 389.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0010e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.296918913694453 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02205448106643203, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 403.50 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8281e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.148353238840179 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022210895825768427, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 397.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.8939e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2049011375888385 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022367310585104824, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 1292.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 447.32 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.9609e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.262446631136998 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02252372534444122, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.3%)
   patch tree reduce : 1462.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 381.16 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.8636e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.178824101746364 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022680140103777616, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 407.20 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.4681e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8390272470221585 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022836554863114013, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 366.59 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8619e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.177422401400196 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02299296962245041, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.3%)
   patch tree reduce : 1574.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 364.40 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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    | 3.0346e+05 | 65536 |      2 | 2.160e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6073827570607517 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023149384381786806, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 1272.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 400.22 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.8417e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.160074109554545 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023305799141123202, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.1%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 417.08 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.8695e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.183933250828359 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0234622139004596, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 373.65 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.9276e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.23389036659495 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023618628659795995, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 414.85 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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    | 5.0190e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.3123796781698 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02377504341913239, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 436.63 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8096e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.132499710505225 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023931458178468788, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.2%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 432.42 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.8966e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.207226377189559 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024087872937805184, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 394.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (63.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0104e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.305017007746505 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02424428769714158, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 392.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.8680e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.182654474225278 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024400702456477977, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 381.85 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.9665e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.267269021612267 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024557117215814373, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 394.99 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (61.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0251e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.317602723726923 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02471353197515077, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1133.00 ns (0.3%)
   LB compute        : 421.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.6694e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.011988072066754 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024869946734487166, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.2%)
   LB compute        : 427.23 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.8933e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.204378264969177 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025026361493823562, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 423.35 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9277e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.233979568938715 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02518277625315996, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 361.93 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.8197e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1411400215133884 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025339191012496355, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 458.40 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.9164e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.224216950228893 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02549560577183275, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 453.12 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.9713e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.271426073991965 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025652020531169148, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.6%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1103.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 377.12 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8964e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.207036299179406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025808435290505544, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.1%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 449.25 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.8144e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.136578618207594 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02596485004984194, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 413.52 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8593e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.175153538572757 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026121264809178337, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.0%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 468.29 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.8901e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.201664833258181 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026277679568514734, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 358.45 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.9721e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.27209783099687 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02643409432785113, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 370.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0235e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.316234394936288 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026590509087187526, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.5%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 389.31 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.8350e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.154285582286673 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026746923846523923, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 418.69 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9344e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.239691750932211 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02690333860586032, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 380.40 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.5367e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.897991560873646 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027059753365196716, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 381.85 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.8000e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.124241281494307 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027216168124533112, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 396.90 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8872e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.199182078032026 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02737258288386951, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 417.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.9186e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.226098545992213 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027528997643205905, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 1213.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 409.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.9215e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.228644075922437 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0276854124025423, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 433.77 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.9405e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.24489766547933 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027841827161878697, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.2%)
   LB compute        : 480.96 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.9571e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.259166019792977 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027998241921215094, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 435.94 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9837e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.28205749121277 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02815465668055149, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1013.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 408.25 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.9295e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.235463196392478 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028311071439887887, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 398.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0432e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.333196289059863 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028467486199224283, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 385.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8745e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.188227950459089 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02862390095856068, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 408.93 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (69.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9604e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.262004608100086 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028780315717897076, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.7%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 359.04 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7745e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.102349331486533 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028936730477233472, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 389.81 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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    | 5.0354e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.32647711357155 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02909314523656987, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 1263.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 381.80 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.9969e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2934377919257365 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029249559995906265, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 377.25 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (63.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6953e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.03425784813882 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02940597475524266, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 387.39 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9070e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.216167273703308 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029562389514579058, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 377.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9438e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.247745554622977 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029718804273915454, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 392.43 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.7680e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0967497602636 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02987521903325185, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 418.58 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9104e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2190378346365405 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030031633792588247, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 398.51 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9730e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.272864635553525 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030188048551924643, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 394.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.8797e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.192661555610409 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03034446331126104, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 409.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.8975e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.207991609404774 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030500878070597436, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 356.06 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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    | 5.0297e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.321558325590017 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030657292829933833, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.87 us   (4.6%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 440.52 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.8761e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1895843877220615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03081370758927023, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 399.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.9612e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.262723228490674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030970122348606625, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 373.66 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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    | 5.0454e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.335094008680221 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031126537107943022, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 386.09 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.8599e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.175701061267858 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03128295186727942, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 382.13 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.9853e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.283406969968071 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03143936662661582, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 378.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (62.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9949e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.291699541600591 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03159578138595222, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1633.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.2%)
   LB compute        : 453.59 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.9363e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.241310360574462 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03175219614528862, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 396.10 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.8932e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.20429962869281 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03190861090462502, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 396.96 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7377e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.07072525413485 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03206502566396142, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.0%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1152.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 538.54 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.8773e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.190623195546935 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03222144042329782, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 440.87 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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    | 5.0262e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.318589736250757 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03237785518263422, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 382.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8174e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.139129653771742 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03253426994197062, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 367.39 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.6675e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.010372838041226 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03269068470130702, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 18.03 us   (4.2%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 390.33 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0803e+05 | 65536 |      2 | 1.606e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5058000911197342 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03284709946064342, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.3%)
   patch tree reduce : 1554.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 430.23 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
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.9270e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.233326460473198 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03300351421997982, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 396.09 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.8756e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.189141296511902 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03315992897931622, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 435.26 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.8707e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.184970564129476 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033316343738652617, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 404.15 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8268e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.147264260420021 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033472758497989016, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 409.96 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8204e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1417778184345995 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033629173257325416, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1834.00 ns (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 379.62 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.7517e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.082741063611399 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033785588016661816, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 373.60 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.8459e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.163685929399984 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033942002775998216, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 437.77 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.9270e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.233314621200715 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034098417535334616, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 382.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.7668e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.095714364983249 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034254832294671016, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 1302.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 398.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.7494e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.080762230536552 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034411247054007416, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1013.00 ns (0.2%)
   LB compute        : 433.43 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.8745e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1882231219662955 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034567661813343815, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 393.90 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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    | 5.0294e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.321277621997723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034724076572680215, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 406.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.8641e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.179301646069913 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034880491332016615, dt = 0.00011950866798338816
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 399.23 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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    | 5.0503e+05 | 65536 |      2 | 1.298e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.315417644820127 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 350.27601548 (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.15 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.61 us    (59.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (0.4%)
   patch tree reduce : 862.00 ns  (0.2%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 404.28 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.0%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (0.5%)
   patch tree reduce : 401.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 361.00 ns  (0.1%)
   LB compute        : 345.58 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 1863.00 ns (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (63.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1182.00 ns (0.3%)
   patch tree reduce : 400.00 ns  (0.1%)
   gen split merge   : 360.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 281.00 ns  (0.1%)
   LB compute        : 345.00 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 1934.00 ns (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.50 us    (2.1%)
   patch tree reduce : 1082.00 ns (0.2%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 771.00 ns  (0.2%)
   LB compute        : 437.26 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7886e+05 | 65536 |      2 | 1.369e-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.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1554.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.3%)
   LB compute        : 422.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.7546e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.08517907261685 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00015641475933639762, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 435.75 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7587e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0887140923132925 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00031282951867279523, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 413.69 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
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.8027e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.126507418211431 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004692442780091929, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.24 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7502e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.081466703570878 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006256590373455905, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.51 us   (2.9%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.3%)
   LB compute        : 401.32 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 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.8387e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.157462943057106 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007820737966819881, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 409.16 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.7517e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0826816529352685 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009384885560183856, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 426.58 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.8258e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1463555866827555 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010949033153547832, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 427.26 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.8072e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.130373227313343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001251318074691181, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.5%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 380.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.7940e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.119098342086454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014077328340275786, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 448.24 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.8034e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1271588652606 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015641475933639763, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1593.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 387.48 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
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.8075e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.130680460850412 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001720562352700374, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 403.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.7552e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.085717449965415 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018769771120367717, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 415.28 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7116e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.048259185345242 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002033391871373169, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 422.19 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.8182e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.139840880919414 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002189806630709567, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 485.05 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.8376e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.156493248786711 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023462213900459646, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 431.15 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8243e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.145131438568009 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025026361493823623, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.3%)
   LB compute        : 464.40 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.6786e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0199108563441275 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00265905090871876, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1173.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 383.30 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.6975e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.036180571810626 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028154656680551577, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.10 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.8240e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.144864551491674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0029718804273915554, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1263.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 422.80 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.7921e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.117462176331107 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003128295186727953, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 395.40 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.4648e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8362194698492016 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003284709946064351, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1323.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.3%)
   LB compute        : 376.92 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7647e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.093924792434219 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034411247054007485, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 420.70 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7642e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.093494501634385 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003597539464737146, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.1%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 475.56 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.8484e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.165820510790061 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003753954224073544, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 429.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.8753e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.188938327460476 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003910368983409941, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.8%)
   patch tree reduce : 1403.00 ns (0.2%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.2%)
   LB compute        : 767.07 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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.8176e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1393408784224475 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004066783742746338, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 388.22 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.7745e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1023292175079975 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004223198502082736, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1693.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 391.11 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8403e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1588614457714845 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004379613261419133, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 391.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (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.8683e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.182875664336049 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00453602802075553, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 397.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8072e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.130390526922431 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046924427800919275, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.3%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 437.60 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (10.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8250e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.145734753797459 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004848857539428325, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 432.25 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.8920e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.203234734323896 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005005272298764722, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (0.5%)
   patch tree reduce : 1463.00 ns (0.1%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.1%)
   LB compute        : 1006.12 us (98.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.5539e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.912782246204485 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005161687058101119, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 387.59 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9950e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.291733298418513 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0053181018174375165, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1433.00 ns (0.3%)
   LB compute        : 417.97 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.8594e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.17522142928486 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005474516576773914, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 424.96 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (61.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9000e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.210129313414801 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005630931336110311, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 425.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.6956e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.03450241358421 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005787346095446708, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 423.10 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 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.9308e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.23663303490173 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005943760854783106, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 406.28 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.8881e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.19994614076617 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006100175614119503, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 386.21 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.8934e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.204473542801984 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0062565903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 424.94 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.8501e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.167221898051084 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006413005132792297, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 374.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.9228e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2297331013456665 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006569419892128695, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1472.00 ns (0.4%)
   gen split merge   : 1293.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 368.95 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.8547e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1712111850197795 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006725834651465092, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.4%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 370.06 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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.8959e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.206597931051961 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006882249410801489, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 400.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.8122e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.134720162831917 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0070386641701378864, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1612.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 409.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.9623e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.263681949004435 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007195078929474284, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1333.00 ns (0.3%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 374.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8738e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.187643441075586 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007351493688810681, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.6%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 382.13 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (62.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9432e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2472617884715 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007507908448147078, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 444.14 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.8958e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.206554155828349 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0076643232074834755, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 377.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7810e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.107855655990793 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007820737966819874, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1332.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        : 407.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.8593e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.175150009430582 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007977152726156272, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.5%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 387.63 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8214e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.142567059024991 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00813356748549267, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 387.40 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.8249e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.145615016746482 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008289982244829068, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 396.28 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8179e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.139597833578399 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008446397004165466, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 414.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (63.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8595e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.175351923105432 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008602811763501864, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1173.00 ns (0.3%)
   LB compute        : 433.83 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.7607e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.090472338441217 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008759226522838262, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 416.17 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.8780e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.191224166342668 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00891564128217466, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 385.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9078e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.216849139622592 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009072056041511059, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.4%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 416.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.8087e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.131721273773408 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009228470800847457, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 445.88 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.8029e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1267109147252565 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009384885560183855, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.3%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 387.63 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.7810e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.107896352221846 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009541300319520253, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 399.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.8970e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.207554834246781 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009697715078856651, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 427.58 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.6345e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.981995571190685 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00985412983819305, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 416.00 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9095e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.21830403554757 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010010544597529447, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1934.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 430.48 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 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.9122e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.220662411556191 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010166959356865846, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 423.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.9054e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.214739625023803 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010323374116202244, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 424.50 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8568e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.173057226867101 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010479788875538642, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1312.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 481.45 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8415e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.159865742120354 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01063620363487504, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 403.54 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.8367e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.155778650500528 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010792618394211438, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1713.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 418.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9994e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.295518310120136 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010949033153547836, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.2%)
   patch tree reduce : 1574.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 470.72 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.7782e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.105479172612506 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011105447912884234, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 431.27 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8739e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.187680968615886 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011261862672220633, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 414.67 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8925e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.203696377552284 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01141827743155703, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 379.17 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 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.8355e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.154723629453746 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011574692190893429, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 382.92 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.8844e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.196765781340003 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011731106950229827, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 419.15 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9036e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2132280769009425 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011887521709566225, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 389.13 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.8252e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.145890852706846 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012043936468902623, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1743.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 383.48 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.8632e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.178513199873645 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012200351228239021, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.3%)
   LB compute        : 415.31 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8800e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1929541785091065 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01235676598757542, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 432.78 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.8618e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1773069628598485 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012513180746911818, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 447.75 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.6802e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.021258797118145 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012669595506248216, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 381.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7943e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.119328350436373 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012826010265584614, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 395.85 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.8066e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.12985257992808 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012982425024921012, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 398.27 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.7647e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.093918720472679 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01313883978425741, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 445.03 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.7891e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.114838298884433 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013295254543593808, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 411.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9057e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.215016817239129 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013451669302930206, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 434.48 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.8762e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.189725787704887 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013608084062266605, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 401.32 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.30 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.8387e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.157490231650719 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013764498821603003, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 408.61 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.7623e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.091789198470789 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0139209135809394, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1583.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 378.83 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.8721e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.186201336087548 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014077328340275799, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 430.80 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.9237e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.230509817216693 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014233743099612197, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 389.50 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.8935e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.204557020406175 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014390157858948595, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 377.93 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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.8244e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.145205313808946 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014546572618284993, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 429.26 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.4785e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.847983234554457 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014702987377621391, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 397.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.9306e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.236452370417156 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01485940213695779, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 408.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.8480e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.165455797898285 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015015816896294188, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 445.02 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.8753e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.188952568620871 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015172231655630586, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 399.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.8993e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.20949449276155 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015328646414966984, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 484.31 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8135e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.135854355534343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015485061174303382, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1843.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 385.46 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (62.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7882e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1140988438878265 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01564147593363978, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1943.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 393.68 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.8217e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.142859619414157 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015797890692976175, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 396.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8469e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.16452589190782 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01595430545231257, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 413.49 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.8407e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.159169737247777 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016110720211648968, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1123.00 ns (0.3%)
   LB compute        : 404.39 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.7984e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1228643012263575 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016267134970985364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.3%)
   LB compute        : 422.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.8224e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.143460078235834 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01642354973032176, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 412.49 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.8682e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.182837912155837 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016579964489658157, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 400.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.8200e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.141387026861495 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016736379248994553, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.2%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 438.77 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.8344e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.153747858654767 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01689279400833095, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 426.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.8272e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.14754682290932 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017049208767667346, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1423.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.8421e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.160420236168986 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017205623527003742, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 402.46 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.7839e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1103707166803884 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01736203828634014, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 416.53 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.7949e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.119838359679352 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017518453045676535, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 393.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.8541e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.17069214677113 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01767486780501293, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 390.73 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8645e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.179658425560637 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017831282564349328, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.2%)
   patch tree reduce : 1534.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 453.95 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8681e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.182754642266393 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017987697323685724, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 386.96 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.8685e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.183097406122835 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01814411208302212, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.98 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.9132e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.221463079717978 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018300526842358517, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.4%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 408.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8883e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2000513366580705 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018456941601694914, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 427.32 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.7871e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.113164052528495 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01861335636103131, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.1%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 410.90 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.8531e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.169852999307803 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018769771120367706, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 427.84 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.8086e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.131616592890728 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018926185879704103, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 426.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 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.6823e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.023100391225251 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0190826006390405, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 446.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 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.6915e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0309543097607134 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019239015398376896, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.5%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 363.17 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9186e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.226107553782651 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019395430157713292, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 396.56 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.7239e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.05886480731028 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01955184491704969, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.2%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 438.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.5112e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8760873327544907 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019708259676386085, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 412.80 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4619e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8337319887531556 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01986467443572248, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 443.09 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.5115e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8763268655254035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020021089195058878, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 379.44 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.5696e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.926296167408707 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020177503954395274, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1634.00 ns (0.3%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 450.38 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.4743e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8443395155815856 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02033391871373167, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 1031.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 395.95 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.6486e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.994151752911591 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020490333473068067, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 416.09 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.4097e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7888800955349837 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020646748232404463, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 397.24 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.6818e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.022633907575658 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02080316299174086, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.5%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 386.07 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7132e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.049609898364278 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020959577751077256, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 391.69 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7068e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.044176139822724 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021115992510413652, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 361.23 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8333e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.152803540239463 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02127240726975005, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 453.05 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (63.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6927e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.03206138405357 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021428822029086445, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 410.54 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 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.7186e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.054298202582852 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02158523678842284, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 421.01 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.7228e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.057897159878611 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021741651547759238, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 400.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7081e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.045224317471289 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021898066307095634, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.5%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 380.48 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.8066e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.129890320708643 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02205448106643203, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 389.75 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7647e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.093914672508325 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022210895825768427, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1843.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 511.88 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (70.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6341e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.981693980147866 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022367310585104824, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.7%)
   patch tree reduce : 1533.00 ns (0.2%)
   gen split merge   : 962.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.1%)
   LB compute        : 917.73 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6367e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.983888970773693 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02252372534444122, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1844.00 ns (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 383.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.4846e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8532428651064596 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022680140103777616, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1744.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 488.16 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7317e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.065514141404071 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022836554863114013, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 391.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.6134e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9639228473305064 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02299296962245041, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 407.93 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6397e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9864631738312437 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023149384381786806, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 386.78 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6842e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.024702221016808 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023305799141123202, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1463.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 419.39 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.71 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.6851e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.025483412307795 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0234622139004596, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 442.75 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.6229e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.972038942786454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023618628659795995, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 397.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
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.6324e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.980219626624067 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02377504341913239, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 411.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7411e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.073576338503776 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023931458178468788, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1953.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 427.67 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6798e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.020974601948162 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024087872937805184, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1323.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 409.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7916e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.116979845686837 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02424428769714158, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 419.55 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.8487e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.16608575741688 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024400702456477977, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 405.07 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.8221e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.143169048737326 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024557117215814373, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 382.38 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7589e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.088877060860968 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02471353197515077, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 400.95 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6882e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.028117688877468 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024869946734487166, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 393.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.8151e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.137158928367342 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025026361493823562, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1663.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.2%)
   LB compute        : 466.93 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 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.7944e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.119391785791878 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02518277625315996, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 383.63 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.8240e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.144835506292468 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025339191012496355, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1163.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 432.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.8455e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1633453541521925 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02549560577183275, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1483.00 ns (0.4%)
   LB compute        : 391.62 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7059e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.043394993963423 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025652020531169148, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 383.84 us  (95.1%)
   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.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.8034e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.127137932522834 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025808435290505544, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 410.11 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.7846e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1109840636137776 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02596485004984194, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 390.08 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.4267e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.803477067597517 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026121264809178337, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 404.32 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf 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.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9839477959290464 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026277679568514734, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 355.46 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9454e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.249139541474834 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02643409432785113, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 392.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.9027e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.212449657478492 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026590509087187526, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1562.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 389.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.8909e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.20234007157313 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026746923846523923, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 421.53 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.8643e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.179427803980141 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02690333860586032, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1743.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 358.45 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.9813e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.280014778058282 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027059753365196716, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 386.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.8560e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.172353245788313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027216168124533112, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 1182.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 462.64 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.8197e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.141102501207368 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02737258288386951, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 420.14 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8028e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.12659224378829 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027528997643205905, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 413.43 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7839e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.110372606944563 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0276854124025423, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1282.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 396.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.8683e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.182937436451271 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027841827161878697, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 393.33 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.8666e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.181452987093354 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027998241921215094, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 391.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7997e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1239474183263995 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02815465668055149, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 386.57 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8361e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.155249371215006 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028311071439887887, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 386.26 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.7482e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.079717578458424 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028467486199224283, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 394.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8177e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.139448841956367 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02862390095856068, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 377.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9067e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.215874526759554 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028780315717897076, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 404.57 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9732e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.272992517118255 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028936730477233472, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 434.89 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.9281e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.234322947086744 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02909314523656987, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 381.64 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.7431e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.075340817367381 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029249559995906265, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 389.71 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.9074e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.216493181635707 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02940597475524266, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 381.38 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (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.8835e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.195931274167045 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029562389514579058, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 386.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8702e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.18450173644472 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029718804273915454, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.1%)
   patch tree reduce : 1312.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 457.23 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.7855e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.111716424501784 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02987521903325185, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 374.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8642e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.179391509923395 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030031633792588247, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 376.64 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7674e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.096221374192686 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030188048551924643, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 426.45 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (61.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7723e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.10037423169498 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03034446331126104, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 427.26 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.8639e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.179078910803953 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030500878070597436, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 387.67 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8211e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.142384424031435 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030657292829933833, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.5%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 367.23 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.7262e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.060778967367817 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03081370758927023, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.3%)
   LB compute        : 362.63 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9081e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.217055296237303 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030970122348606625, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 395.56 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (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.9113e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.2198088878459625 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031126537107943022, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.2%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 441.07 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.8717e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.185803423777931 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03128295186727942, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.5%)
   patch tree reduce : 1743.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 355.82 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
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.9243e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.231029481844059 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03143936662661582, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.87 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.8496e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.166862366628578 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03159578138595222, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 390.15 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.7377e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.07070253570942 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03175219614528862, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.1%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 465.50 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8969e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.207439484899052 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03190861090462502, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 400.95 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.9521e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.254897070404787 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03206502566396142, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 421.30 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.1717e+05 | 65536 |      2 | 1.571e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5844096636113774 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03222144042329782, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.50 us   (1.2%)
   patch tree reduce : 1623.00 ns (0.1%)
   gen split merge   : 871.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.0%)
   LB compute        : 1748.72 us (98.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.2%)
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.4087e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.788032016687883 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03237785518263422, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (0.5%)
   patch tree reduce : 1523.00 ns (0.1%)
   gen split merge   : 1202.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.1%)
   LB compute        : 1059.50 us (98.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5616e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.919339207715799 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03253426994197062, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.1%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 456.41 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7961e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.120897781285761 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03269068470130702, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 428.27 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.8787e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.191805400747672 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03284709946064342, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 379.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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.8210e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.142237882751062 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03300351421997982, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.0%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 474.97 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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.7657e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.094737347618384 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03315992897931622, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.5%)
   patch tree reduce : 1652.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 361.65 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 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.7987e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.1231318646738035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033316343738652617, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 391.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.8221e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.143200661841747 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033472758497989016, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 401.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (69.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8046e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.128179624051249 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033629173257325416, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 391.04 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.8209e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.142207350813809 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033785588016661816, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 399.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8812e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.193956548955904 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033942002775998216, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 404.74 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.8669e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.181705601432371 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034098417535334616, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 381.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.8739e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.187692149150051 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034254832294671016, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 384.45 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.1%)
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.5518e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9109756191837604 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034411247054007416, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 378.72 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.9026e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.212366275833441 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034567661813343815, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 414.38 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.8382e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.157050404042626 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034724076572680215, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 1093.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 367.22 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.8866e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.198591564584681 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034880491332016615, dt = 0.00011950866798338816
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.1%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 445.62 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9399e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.242957400174677 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 381.27280073900005 (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.04 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (57.3%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1734.00 ns (0.4%)
   patch tree reduce : 902.00 ns  (0.2%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 377.09 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (63.8%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1172.00 ns (0.3%)
   patch tree reduce : 350.00 ns  (0.1%)
   gen split merge   : 380.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 271.00 ns  (0.1%)
   LB compute        : 356.61 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 1953.00 ns (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.1%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1112.00 ns (0.4%)
   patch tree reduce : 391.00 ns  (0.1%)
   gen split merge   : 360.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 250.00 ns  (0.1%)
   LB compute        : 308.62 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 1803.00 ns (0.6%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=False
Info: time since start : 381.4485376 (s)                                          [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.7%)
   patch tree reduce : 1653.00 ns (0.3%)
   gen split merge   : 1173.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 452.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (68.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7273e+05 | 65536 |      2 | 1.386e-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.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 408.31 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.6825e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.023265587609758 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00015641475933639762, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 1152.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 446.43 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.6894e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.029161421115594 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00031282951867279523, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 377.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.7086e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.045644926600835 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004692442780091929, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 399.38 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.7115e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0481705066429585 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006256590373455905, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 415.63 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.3908e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7726191820242234 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007820737966819881, dt = 9.292620331801207e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 406.00 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.6469e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3720471252848925 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 382.502388589 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0008750000000000001, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 438.18 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.6789e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.020129719702382 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010314147593363978, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.11 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.6422e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.988651193498405 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011878295186727955, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 407.27 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6870e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.027166804765853 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013442442780091932, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 389.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.6554e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.000016491912011 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001500659037345591, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1522.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 450.69 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.6777e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.019152280078269 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016570737966819886, dt = 9.292620331801164e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1312.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 379.69 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2245e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1564484819270606 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 383.428076012 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0017500000000000003, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (1.6%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 417.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.7045e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.042143536386737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001906414759336398, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.5%)
   patch tree reduce : 1753.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 360.20 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.6613e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.005063081764778 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020628295186727956, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 415.45 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
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.7010e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.03917525284162 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0022192442780091933, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1644.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 379.78 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.7029e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.040819517548623 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002375659037345591, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 389.73 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.4784e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8479235177575255 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025320737966819887, dt = 9.292620331801185e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 380.08 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5964e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3462686808246067 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 384.342601681 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0026250000000000006, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 2.00 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 406.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.7505e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.081704156048457 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027814147593363983, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 375.84 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.6554e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.999967846508411 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002937829518672796, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 425.45 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6537e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.998520505307466 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030942442780091937, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 371.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.7614e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.091070665581878 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0032506590373455914, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 384.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.7313e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.065172502591219 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003407073796681989, dt = 9.292620331801142e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 422.05 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.6658e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3817238558115594 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 385.24741117300005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0035000000000000005, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.64 us    (1.5%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 486.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.45 us    (70.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7035e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.041261949928229 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003656414759336398, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1614.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 470.39 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.4440e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.818294989262 (tsim/hr)                               [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003812829518672796, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 418.73 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.3331e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7230179060635846 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003969244278009193, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 413.50 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7025e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.040414493827558 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00412565903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 424.99 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.6531e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.998034411468642 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004282073796681988, dt = 9.292620331801272e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.93 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.6080e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3521991064377987 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 386.17976621500003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.004375, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 424.01 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.6825e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.023239917610182 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004531414759336398, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 388.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.6118e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.962538973524037 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004687829518672795, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 398.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.5877e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9418087956164323 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004844244278009192, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 402.58 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 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.7534e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.084200349993846 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0050006590373455895, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 379.99 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.5731e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.929289686580384 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005157073796681987, dt = 9.292620331801445e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 410.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.6053e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3508300831776903 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 387.10073796300003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.005250000000000001, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.37 us    (1.5%)
   patch tree reduce : 2.05 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 466.02 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.6333e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.980999770759427 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0054064147593363985, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 383.87 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (62.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6127e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9633149630473303 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005562829518672796, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 412.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.6575e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.001741269831532 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005719244278009193, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 449.57 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.4500e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.823524657169788 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00587565903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 396.07 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.6437e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9898866202323373 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0060320737966819875, dt = 9.292620331801359e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.1%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 470.24 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5878e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3418706463735424 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 388.023291468 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.006125000000000001, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.6%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 421.17 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (62.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5074e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8728042612716767 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006281414759336398, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 7.54 us    (1.9%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 375.72 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.5875e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9416672447127983 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006437829518672796, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 423.62 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.5850e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9394504167457756 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006594244278009193, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 417.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.5869e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9411087283200867 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00675065903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 407.36 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.5663e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.923377732406416 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006907073796681987, dt = 9.292620331801359e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 380.12 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.5831e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.339498527224212 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 388.95429189000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.007000000000000001, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 431.45 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (68.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6714e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0137066554029035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007156414759336398, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 403.40 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7009e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.039101776671484 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0073128295186727955, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 409.89 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.6140e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9644451718504894 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007469244278009193, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 389.69 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.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.6470e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9927150717765154 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00762565903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 411.74 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.6489e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.994362295057269 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007782073796681987, dt = 9.292620331801445e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 428.05 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6862e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.392099356628865 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 389.87151507500005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.007875000000000002, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.18 us    (1.6%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.3%)
   LB compute        : 477.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (70.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5773e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.932846484707438 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0080314147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.5714e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.927772890535501 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008187829518672798, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 413.27 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.5550e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9137419767035295 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008344244278009196, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 422.87 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.6370e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9841643675203553 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008500659037345594, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 375.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.7521e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.083076069171556 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008657073796681992, dt = 9.292620331800838e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 398.75 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.6841e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3910609652957584 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 390.788318154 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.00875, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (1.5%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1193.00 ns (0.3%)
   LB compute        : 446.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.6999e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.038171502905364 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008906414759336399, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 405.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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    | 4.6861e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.026377676035786 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009062829518672797, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 401.53 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.5181e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8819739078468642 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009219244278009195, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 361.46 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8210e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.142262625529385 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009375659037345593, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 390.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.6854e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.025785658245261 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009532073796681991, dt = 9.292620331801012e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 400.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.6025e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3493935671345385 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 391.69574786100003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.009625000000000002, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 463.43 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.7093e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.046268531870206 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0097814147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 397.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6789e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.020185773907845 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009937829518672798, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 393.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.2633e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6630481624631264 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010094244278009196, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.2%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 448.00 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.6586e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.002734187336893 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010250659037345594, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 403.93 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.6513e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.996457308617921 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010407073796681992, dt = 9.292620331801012e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 422.15 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.7085e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.403508080169643 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 392.618939735 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.010500000000000002, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 412.49 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7101e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.046965943874225 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0106564147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.1%)
   patch tree reduce : 1614.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 457.87 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7330e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.066654380211251 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010812829518672799, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 395.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7451e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0770357708248985 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010969244278009197, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1933.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 425.79 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6913e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.030797224039147 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011125659037345595, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 407.58 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.3566e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7432727453842847 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011282073796681993, dt = 9.292620331800838e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 396.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6870e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.392545464300038 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 393.536152818 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.011375000000000001, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.6%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 441.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.6729e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.015030197559588 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0115314147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 396.78 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (63.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6398e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.986578889386686 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011687829518672798, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 385.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.6928e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.032150513306906 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011844244278009196, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 405.74 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6878e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.027822785245961 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012000659037345594, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 378.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.6439e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9900543307404472 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012157073796681992, dt = 9.292620331801012e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.48 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.6760e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.386893919110526 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 394.448545963 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.012250000000000002, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 421.32 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (71.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6711e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.013424956936989 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0124064147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 414.38 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6482e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.993780362062566 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012562829518672798, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 407.70 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.6212e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9705594104190425 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012719244278009197, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 370.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.6279e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.976334073779158 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012875659037345595, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1303.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 422.32 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.6684e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.011107474088142 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013032073796681993, dt = 9.292620331800838e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 427.59 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6837e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3908193891864675 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 395.36357683700004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.013125000000000001, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.37 us    (1.6%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 435.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7349e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.068296642820552 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0132814147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 403.39 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (71.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6304e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9785157080585347 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013437829518672798, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.1%)
   patch tree reduce : 1693.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 464.89 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (63.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6423e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9887509025077352 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013594244278009196, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 392.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6448e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9908898420106547 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013750659037345594, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.2%)
   LB compute        : 424.56 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (63.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7212e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.056514846687021 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013907073796681992, dt = 9.292620331801012e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 437.44 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.6641e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.380835705318063 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 396.27378244700003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.014000000000000002, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1964.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 450.97 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7421e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.074430747551975 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0141564147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 366.95 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.7139e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.050222927973947 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014312829518672798, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 364.00 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6542e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.998902604307536 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014469244278009196, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 411.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6292e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9774297752302474 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014625659037345595, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 414.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5885e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9424537120886467 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014782073796681993, dt = 9.292620331801012e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (0.3%)
   patch tree reduce : 1432.00 ns (0.1%)
   gen split merge   : 881.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.1%)
   LB compute        : 1642.51 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (63.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5607e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.328027450401656 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 397.18818201600004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.014875000000000003, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (1.6%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 405.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.6648e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.008022275131452 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015031414759336401, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 2.31 us    (0.6%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 382.74 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.7139e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.050255265297374 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015187829518672799, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 417.49 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.65 us   (93.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf 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.935504311540692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015344244278009197, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 440.57 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.6303e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.978373026461861 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015500659037345595, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 424.88 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
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.8025e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.126394897399734 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01565707379668199, dt = 9.292620331801185e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 386.03 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.4556e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2744228256498342 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 398.10814807400004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.015750000000000004, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.38 us    (1.6%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 439.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.5551e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9138263325671225 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0159064147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 444.79 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.4922e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8597695753968733 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016062829518672796, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 373.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.7217e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.056944237547517 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016219244278009193, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1123.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 378.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.6483e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.993851773657662 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01637565903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1333.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 409.42 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.7560e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.086445402370148 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016532073796681986, dt = 9.292620331801532e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 384.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7307e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4148148299230257 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 399.02285180900003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.016625, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 445.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.6626e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0061917199411985 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016781414759336397, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 385.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.6529e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9978693220309194 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016937829518672794, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 403.43 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.5836e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.938318573942783 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01709424427800919, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 400.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.6382e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9852385813014 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017250659037345586, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1332.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 450.03 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9205e+05 | 65536 |      2 | 2.244e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.509346275153925 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017407073796681983, dt = 9.292620331801879e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 366.34 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6108e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3536322009417923 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 400.026157909 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0175, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.44 us    (1.5%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 488.37 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.5149e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8792496962252887 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017656414759336398, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 391.61 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.5726e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9288723624909574 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017812829518672794, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 437.01 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.5844e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9389834276253572 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01796924427800919, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 380.64 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.5801e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.935312277064175 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018125659037345587, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 378.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.6484e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.993951402906414 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018282073796681984, dt = 9.292620331801879e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1644.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 388.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6405e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.368765296846552 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 400.953734137 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.018375000000000002, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 453.81 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.6007e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.952945167573583 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0185314147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (0.3%)
   patch tree reduce : 1553.00 ns (0.1%)
   gen split merge   : 872.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.1%)
   LB compute        : 1690.42 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.5677e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9246204522071784 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018687829518672795, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 379.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6615e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.005182215686077 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01884424427800919, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1653.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 366.34 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6138e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9642202450967763 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019000659037345588, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 403.92 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.5721e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9283808277485464 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019157073796681984, dt = 9.292620331801879e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 413.60 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
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.6264e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3615898761857443 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 401.877716824 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.019250000000000003, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.6%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.77 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6362e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.983476933339527 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0194064147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 408.54 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.6305e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.978546263938984 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019562829518672796, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 405.37 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (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.6537e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9985040087712767 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019719244278009192, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (0.3%)
   patch tree reduce : 1372.00 ns (0.1%)
   gen split merge   : 962.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1013.00 ns (0.1%)
   LB compute        : 1775.94 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 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.3913e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.773096323961849 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01987565903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 384.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.7181e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.053845177431116 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020032073796681985, dt = 9.292620331801879e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 426.21 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.6138e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3551772670168623 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 402.801378957 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.020125000000000004, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (1.6%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 436.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6866e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.02679788803733 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0202814147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 1243.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 386.62 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (62.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7617e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.091324516389021 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020437829518672797, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 381.62 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6049e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9565615927198445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020594244278009193, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 375.76 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.3460e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.734104644860609 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02075065903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 383.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.6257e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.974445742885314 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020907073796681986, dt = 9.292620331801879e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 385.32 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.4617e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2774998620525966 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 403.73191263700005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.021000000000000005, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (1.5%)
   patch tree reduce : 1943.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.3%)
   LB compute        : 465.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5941e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9473211173391536 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0211564147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.83 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.7123e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.048841237570712 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021312829518672798, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 389.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.6626e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.006178209793294 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021469244278009194, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 412.03 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.6177e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.967599903749344 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02162565903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 399.90 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6603e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.004193806730372 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021782073796681987, dt = 9.292620331801532e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 391.20 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.6819e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3899338170209776 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 404.64766106900004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.021875000000000002, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 413.48 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (63.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6365e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9837081654677196 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0220314147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 423.53 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.5863e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9405926724421256 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022187829518672795, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 387.44 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6849e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.02531495479094 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02234424427800919, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.4%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 370.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.6355e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9828965617339795 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022500659037345588, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.5%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 1283.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 360.42 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6910e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.030531989332663 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022657073796681984, dt = 9.292620331801879e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.4%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 364.10 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6932e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3956715105672868 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 405.564350002 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.022750000000000003, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 425.31 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6083e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9595129736211607 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0229064147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 392.31 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.6994e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.037767299356865 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023062829518672796, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 358.07 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.7259e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.060585874264797 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023219244278009192, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 524.48 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.7034e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0412587305173675 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02337565903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 385.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.6625e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.006109149848817 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023532073796681985, dt = 9.292620331801879e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 15.99 us   (3.6%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 405.25 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6754e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.386592808057341 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 406.474848259 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.023625000000000004, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (1.6%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 424.67 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
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.6954e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.034327506237281 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0237814147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 391.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6412e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.987787812931275 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023937829518672796, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 391.83 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.6842e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.024679006571824 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024094244278009193, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 423.27 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.7045e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.04220304985844 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02425065903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.1%)
   patch tree reduce : 1963.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 427.00 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5793e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.934629746483853 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024407073796681986, dt = 9.292620331801879e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.3%)
   LB compute        : 378.50 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6762e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3869867555799997 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 407.39017147000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.024500000000000004, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.53 us    (1.6%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 438.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (61.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5922e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.945663021337113 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0246564147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 368.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 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.5797e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.934962526526862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024812829518672797, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 378.59 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.6178e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9676302362746725 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024969244278009194, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 418.73 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.6461e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9919877511407686 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02512565903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 377.35 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (62.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6188e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.968512514593809 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025282073796681986, dt = 9.292620331801879e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.04 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.5189e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3067340678618375 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 408.315390912 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.025375000000000005, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.5%)
   patch tree reduce : 1673.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.2%)
   LB compute        : 457.95 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6889e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0287842696588365 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0255314147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 440.46 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.6114e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.962160529866107 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025687829518672798, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 406.70 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
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.5566e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.915102396583832 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025844244278009194, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 400.64 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.6352e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9826370580928376 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02600065903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 398.57 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.6503e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.99562391612967 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026157073796681987, dt = 9.292620331801532e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 363.59 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (58.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6023e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.34926910148011 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 409.234592591 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.026250000000000002, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (1.5%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 440.12 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6762e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.017840038162392 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0264064147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 364.69 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7377e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.070713365186286 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026562829518672795, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 433.76 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.5171e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.881119920362331 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02671924427800919, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 416.34 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.6847e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.025155402208507 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026875659037345588, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1233.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 356.56 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.7440e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.076127983083113 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027032073796681984, dt = 9.292620331801879e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 405.00 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.4710e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.282282104814068 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 410.15222000600005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.027125000000000003, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.27 us    (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 430.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.7282e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   1.3% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.062485626183026 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0272814147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 379.81 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.6957e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.034615818072443 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027437829518672796, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1263.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 411.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.7111e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.047791563199904 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027594244278009192, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 403.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.6394e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9862316782143123 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02775065903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.74 us   (5.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 377.26 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.6417e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9882221823601975 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027907073796681985, dt = 9.292620331801879e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 419.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6624e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.379964318888918 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 411.066758236 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.028000000000000004, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (1.6%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 415.90 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.7345e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.06789673059154 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0281564147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 371.87 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.6920e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.031435569192173 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028312829518672797, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 378.74 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.7365e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.069677557062178 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028469244278009193, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 410.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.5698e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9264239947904715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02862565903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 365.29 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.6550e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9996743795693614 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028782073796681986, dt = 9.292620331801879e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 432.53 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.7724e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.436129009342995 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 411.976677617 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.028875000000000005, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 422.23 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.6771e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.018608845212451 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0290314147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 397.38 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
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.4941e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.861347540671394 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029187829518672798, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 385.22 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2576e+05 | 65536 |      2 | 2.012e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.798927421684456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029344244278009194, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.1%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.2%)
   LB compute        : 484.28 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6286e+05 | 65536 |      2 | 1.806e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.117773290784288 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02950065903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 446.09 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.4379e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8131268347115066 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029657073796681987, dt = 9.292620331801879e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 405.80 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.4191e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.255747154664421 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 413.009724455 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.029750000000000006, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (1.5%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 449.88 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.5306e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.892786079685103 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029906414759336402, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 381.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.4418e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8164236859334637 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0300628295186728, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.5%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 381.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.1433e+05 | 65536 |      2 | 1.582e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5599886236462943 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030219244278009195, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 402.73 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.6502e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9954830382973703 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03037565903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.50 us   (6.3%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 366.91 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.6584e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.002529248414654 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030532073796681988, dt = 9.292620331801532e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 399.86 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.5868e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3413918097844912 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 413.954549181 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.030625000000000003, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1673.00 ns (0.3%)
   gen split merge   : 1073.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 461.74 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.5740e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.93006666859786 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0307814147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 376.48 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.6068e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.958258690866992 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030937829518672796, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 427.23 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.6056e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9571810057256447 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031094244278009192, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 382.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.5963e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9492117296275056 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03125065903734559, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1253.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 387.00 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.3610e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7470629506401805 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03140707379668199, dt = 9.292620331801532e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (0.9%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 564.15 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2382e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1634342882715103 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 414.90044962900004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.03150000000000001, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.05 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 439.89 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.6305e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9785692022404544 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03165641475933641, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 423.42 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4130e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7916709864884055 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03181282951867281, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1784.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 569.69 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (71.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf 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.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9639282049512814 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03196924427800921, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.1%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 445.65 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6649e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.008152883186376 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03212565903734561, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 362.48 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.3813e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7644966970736973 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.032282073796682006, dt = 9.292620331800144e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1644.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 392.79 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.7365e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.417782471595364 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 415.83239800200005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.03237500000000001, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.5%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 457.90 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7404e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.073030284546778 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03253141475933641, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 377.56 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (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.5454e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.905426259663101 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03268782951867281, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 379.80 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.6629e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.006454587407888 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03284424427800921, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 399.65 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7178e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.053600595864464 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03300065903734561, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.5%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 350.06 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.7040e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.041722871675395 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03315707379668201, dt = 9.29262033179945e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 402.88 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (70.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6815e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.389701925635495 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 416.74440908500003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.03325, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.60 us    (1.7%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 414.97 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.6632e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.006704773953606 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0334064147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 410.07 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.6992e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.037616427864291 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0335628295186728, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.1%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 460.40 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.6181e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9679241363328797 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0337192442780092, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 389.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3808e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7640491278040433 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0338756590373456, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 399.79 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.5909e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.944565876815439 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034032073796682, dt = 9.292620331800144e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 389.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6736e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3856700082026188 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 417.67080093100003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.034125, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.5%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 436.31 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (63.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5824e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.937280211629758 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0342814147593364, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 418.71 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.5814e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.936377394260535 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0344378295186728, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 408.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
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.4901e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8579680519697273 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0345942442780092, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1602.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 371.92 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4912e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8589102279345195 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0347506590373456, dt = 0.00015641475933639762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 367.42 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (62.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5166e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.88073480311827 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034907073796682, dt = 9.292620331800144e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 431.90 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5185e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3065296174673318 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 418.61158578500005 (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  19.91 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     : 15.02 us   (75.5%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1794.00 ns (0.3%)
   patch tree reduce : 1512.00 ns (0.2%)
   gen split merge   : 741.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 696.31 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (64.5%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (0.4%)
   patch tree reduce : 641.00 ns  (0.1%)
   gen split merge   : 421.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 461.00 ns  (0.1%)
   LB compute        : 668.05 us  (98.5%)
   LB move op cnt    : 0
   LB apply          : 2.33 us    (0.3%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (62.9%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (0.3%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 291.00 ns  (0.0%)
   LB compute        : 626.87 us  (98.7%)
   LB move op cnt    : 0
   LB apply          : 2.13 us    (0.3%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running none hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.62 us   (1.6%)
   patch tree reduce : 2.32 us    (0.3%)
   gen split merge   : 941.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.2%)
   LB compute        : 679.21 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (58.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7768e+05 | 65536 |      2 | 2.360e-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 = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1914.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 574.87 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 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.4675e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0176543494600327 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 8.221661412416737e-05, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1894.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 569.37 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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    | 4.8854e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.206397477705461 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00016443322824833475, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (0.7%)
   patch tree reduce : 1914.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 743.77 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.9598e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.239969386361686 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0002466498423725021, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.0%)
   patch tree reduce : 1923.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.2%)
   LB compute        : 548.97 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.9096e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.217334611716447 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0003288664564966695, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 439.10 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.9621e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.241027286466772 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004110830706208369, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1873.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 394.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9209e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2224084180406707 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004932996847450043, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 418.25 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9030e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.214335953246034 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005755162988691717, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 401.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8590e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1944714338958398 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006577329129933391, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.35 us    (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 465.15 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.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.7706e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.154542909891805 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007399495271175065, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.0%)
   patch tree reduce : 2.15 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 502.95 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.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.6762e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1118920845359486 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008221661412416739, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 384.23 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.9105e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2177114338308006 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009043827553658413, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 474.81 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9306e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.226808538243054 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009865993694900086, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 374.72 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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    | 4.9548e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2377545054949315 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010688159836141759, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 1093.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 402.69 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8587e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1943369511521476 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011510325977383432, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 380.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (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.9300e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.226545540498319 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012332492118625105, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 379.27 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9008e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.213338748159859 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013154658259866777, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 375.66 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.8768e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.202512571861707 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001397682440110845, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.2%)
   patch tree reduce : 2.24 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.2%)
   LB compute        : 464.89 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0080e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2617664358781777 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014798990542350123, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 570.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 444.99 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (71.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.2638e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9256417676130315 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015621156683591796, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 380.33 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.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.9902e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.253728121199592 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001644332282483347, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 412.47 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8922e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.209480593666738 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017265488966075142, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 2.20 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 415.51 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9468e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.234112231799479 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018087655107316815, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1964.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 416.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9360e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2292518722718944 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018909821248558488, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1692.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 386.17 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (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.8948e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2106152669260077 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019731987389800163, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 380.76 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.7832e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1602323468441327 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020554153531041836, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 419.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8912e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.209016360367168 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002137631967228351, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1993.00 ns (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 406.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.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.8817e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2047102635228035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002219848581352518, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 2.01 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 430.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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    | 5.0431e+05 | 65536 |      2 | 1.300e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.277625214038289 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023020651954766855, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 385.32 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.9002e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2130793856413717 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023842818096008528, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.19 us    (0.5%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 378.38 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0731e+05 | 65536 |      2 | 1.292e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2911461276331497 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00246649842372502, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 400.93 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0173e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2659666101361493 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025487150378491873, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1994.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 566.40 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.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.8289e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1808515427357396 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0026309316519733546, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 377.45 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1969e+05 | 65536 |      2 | 1.261e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3470890739825463 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002713148266097522, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 1804.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 352.64 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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    | 5.1953e+05 | 65536 |      2 | 1.261e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.346348859466682 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002795364880221689, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 421.30 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.8764e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.202334969492139 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028775814943458565, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 380.99 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.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.8498e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1902980600842445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002959798108470024, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 416.38 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.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.8650e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.197160591229454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003042014722594191, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 404.30 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9378e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.230044954572073 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031242313367183584, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 404.84 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6754e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1115269379837303 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0032064479508425257, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 383.33 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.8222e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   1.3% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.177842673105455 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003288664564966693, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 444.71 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.9181e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2211702442829746 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033708811790908602, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1683.00 ns (0.3%)
   gen split merge   : 1232.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 475.58 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.8365e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1843274577952507 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034530977932150275, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 380.71 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5522e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.055921595242546 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003535314407339195, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 414.01 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (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.6148e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.084169760411108 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003617531021463362, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 406.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (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.3996e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9869670429572273 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036997476355875294, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (0.3%)
   patch tree reduce : 1703.00 ns (0.1%)
   gen split merge   : 1202.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.0%)
   LB compute        : 1744.05 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8574e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1937394620836113 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0037819642497116967, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.17 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 413.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.7326e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1373926742440665 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003864180863835864, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 2.05 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 464.61 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.9249e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.22422384094893 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003946397477960032, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 380.41 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.9058e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.215623105598197 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0040286140920841994, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 389.32 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6909e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.118559580464255 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004110830706208367, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 2.38 us    (0.6%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 393.03 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7027e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1238634149798234 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004193047320332535, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.3%)
   patch tree reduce : 2.34 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 432.65 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.6276e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.089941565110368 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004275263934456703, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 417.06 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.7563e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1481033109240335 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00435748054858087, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 441.07 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.6760e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.111822784969915 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004439697162705038, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 425.03 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8576e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.193813721874085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004521913776829206, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 383.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.9307e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.226858163000814 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046041303909533735, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 380.41 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.8992e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2126259452005548 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004686347005077541, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1974.00 ns (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 381.08 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 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.9856e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.25165828711428 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004768563619201709, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.0%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 541.77 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.9878e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2526183725492555 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004850780233325877, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 395.12 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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    | 5.0116e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2633988883368867 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004932996847450044, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 382.04 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8075e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1711991940824635 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005015213461574212, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 446.28 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.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.6063e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0803477721730155 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00509743007569838, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 385.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.5282e+05 | 65536 |      2 | 2.592e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1418049198583924 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005179646689822548, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 477.89 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5172e+05 | 65536 |      2 | 1.863e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5884919286413126 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005261863303946715, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 438.54 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.0038e+05 | 65536 |      2 | 1.637e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8082442602137518 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005344079918070883, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 2.20 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 386.96 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6368e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0941241917261464 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005426296532195051, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.2%)
   patch tree reduce : 1933.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 499.36 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.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.6493e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.09974654363821 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0055085131463192185, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.0%)
   patch tree reduce : 2.12 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 499.70 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (64.0%)
Info: cfl dt = 8.221661412416744e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8458e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1885233331762763 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005590729760443386, dt = 8.221661412416744e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 407.80 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (67.5%)
Info: cfl dt = 8.221661412416758e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9014e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2136155049498383 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005672946374567554, dt = 8.221661412416758e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.32 us   (5.4%)
   patch tree reduce : 2.21 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 397.52 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.9%)
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.7777e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1577424686790025 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005755162988691722, dt = 8.221661412416794e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 385.99 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (63.2%)
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.7922e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.164276618354484 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005837379602815889, dt = 8.221661412416885e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.1%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 440.33 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.1%)
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.8029e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.169129512460882 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005919596216940058, dt = 8.221661412417106e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 380.35 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.0%)
Info: cfl dt = 8.221661412417637e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7732e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1557290454944975 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006001812831064229, dt = 8.221661412417637e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 416.16 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.1%)
Info: cfl dt = 8.221661412418862e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5225e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.042483552880224 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006084029445188406, dt = 8.221661412418862e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 417.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (63.2%)
Info: cfl dt = 8.221661412421604e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0816e+05 | 65536 |      2 | 1.606e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8433754814205596 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006166246059312594, dt = 8.221661412421604e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 398.08 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.6%)
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.6506e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1003608882377636 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00624846267343681, dt = 8.221661412427566e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 45.07 us   (8.3%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 482.17 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.6%)
Info: cfl dt = 8.221661412440174e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9051e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2153071297419897 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006330679287561086, dt = 8.221661412440174e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.0%)
   patch tree reduce : 1924.00 ns (0.4%)
   gen split merge   : 1173.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 497.85 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.0%)
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.9102e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.217600538708743 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006412895901685488, dt = 8.221661412466151e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 2.01 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 425.57 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.8%)
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.9670e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.243240680179244 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006495112515810149, dt = 8.221661412518349e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 384.54 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (65.7%)
Info: cfl dt = 8.221661412620788e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7573e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.148538908045456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006577329129935332, dt = 8.221661412620788e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 437.85 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.8%)
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.8794e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2036705489305177 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00665954574406154, dt = 8.221661412817336e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 391.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.3%)
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.7657e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1523453752067243 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006741762358189713, dt = 8.221661413186408e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.03 us   (5.1%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 1133.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 394.00 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.4%)
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.8481e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1895333483216426 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006823978972321577, dt = 8.221661413865328e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1903.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1553.00 ns (0.4%)
   LB compute        : 386.80 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (67.8%)
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.7722e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1552652136742916 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006906195586460231, dt = 8.221661415089862e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.4%)
   patch tree reduce : 2.31 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 423.27 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (71.2%)
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.8920e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2093889261608655 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0069884122006111295, dt = 8.221661417257232e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.4%)
   patch tree reduce : 2.05 us    (0.1%)
   gen split merge   : 841.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.1%)
   LB compute        : 1376.65 us (98.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (66.7%)
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.8302e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1814516630470058 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007070628814783702, dt = 8.221661421024609e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 377.59 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.3%)
Info: cfl dt = 8.221661427460442e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8850e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.206227785605015 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0071528454289939486, dt = 8.221661427460442e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 382.18 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.8%)
Info: cfl dt = 8.221661438272913e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9354e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2289511706325706 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007235062043268553, dt = 8.221661438272913e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 434.38 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.5%)
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.8586e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.194293327101596 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007317278657651282, dt = 8.221661456149165e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.2%)
   patch tree reduce : 1994.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 441.88 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.6%)
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.8882e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2076601291828077 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007399495272212774, dt = 8.221661485250954e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 430.48 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.5%)
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.8913e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.209060334560184 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0074817118870652835, dt = 8.22166153192759e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 358.90 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.6%)
Info: cfl dt = 8.221661605726003e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9232e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2234593782431538 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0075639285023845594, dt = 8.221661605726003e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 385.05 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (61.1%)
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.8999e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.212949315931368 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00764614511844182, dt = 8.221661720800759e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 378.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.3%)
Info: cfl dt = 8.221661897854317e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9313e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.227105934284724 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007728361735649827, dt = 8.221661897854317e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.5%)
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.9780e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2482255625457417 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00781057835462837, dt = 8.221662166769725e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 442.75 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.3%)
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.9241e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.22388465754607 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007892794976296068, dt = 8.221662570134271e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 412.58 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.9%)
Info: cfl dt = 8.221663167892783e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7966e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1662727077324764 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00797501160199741, dt = 8.221663167892783e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 381.80 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.8%)
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.9494e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.235314323361806 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008057228233676338, dt = 8.221664043412473e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.2%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 448.19 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.4%)
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.9376e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.229951932856539 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008139444874110464, dt = 8.221665311286093e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 412.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.1%)
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.8988e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2124622447366917 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008221661527223324, dt = 8.22166712724476e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1754.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 361.72 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.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.9914e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2542557764068065 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00830387819849577, dt = 8.22166970059389e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 396.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.4%)
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.9287e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2259633144217523 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00838609489550171, dt = 8.22167330962201e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 396.74 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.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.9757e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2471720120516614 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00846831162859793, dt = 8.22167832045964e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 375.59 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.5%)
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.7335e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.137814221148984 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008550528411802526, dt = 8.221685209879884e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 388.88 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.8%)
Info: cfl dt = 8.221694592529832e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9226e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2232073977767315 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008632745263901325, dt = 8.221694592529832e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 382.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.6%)
Info: cfl dt = 8.221707253058221e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8868e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2070282996623765 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008714962209826623, dt = 8.221707253058221e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 442.21 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.3%)
Info: cfl dt = 8.221724183555953e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8637e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.196604360238101 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008797179282357206, dt = 8.221724183555953e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 2.25 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 476.45 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.6%)
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.8511e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1909255663673908 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008879396524192765, dt = 8.221746626648717e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 434.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.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.8956e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2110250127959556 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008961613990459253, dt = 8.221776124472195e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1824.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 380.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.5%)
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    | 2.8640e+05 | 65536 |      2 | 2.288e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2934653185914526 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009043831751703976, dt = 8.221814573618833e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.2%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 1092.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 436.59 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (67.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.5789e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0680041306956634 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009126049897440165, dt = 8.221864285970647e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1804.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.2%)
   LB compute        : 515.27 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.4%)
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.9326e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2277527828793486 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009208268540299871, dt = 8.221928055126726e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 382.80 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.7%)
Info: cfl dt = 8.222009227900736e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7763e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1571900491250715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009290487820851139, dt = 8.222009227900736e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.3%)
   patch tree reduce : 2.18 us    (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 432.20 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.3%)
Info: cfl dt = 8.222111780108391e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8137e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1740941611677664 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009372707913130145, dt = 8.222111780108391e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 1163.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 393.81 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.5%)
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.9128e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2188876463660137 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009454929030931229, dt = 8.222240395595671e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.3%)
   LB compute        : 406.91 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.5%)
Info: cfl dt = 8.222400547185504e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8442e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1879462864028674 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009537151434887186, dt = 8.222400547185504e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1914.00 ns (0.4%)
   gen split merge   : 1011.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 425.02 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.6%)
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.8147e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1746570210377936 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00961937544035904, dt = 8.22259857795537e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 397.21 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.5%)
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.7971e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1667457405294437 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009701601426138594, dt = 8.222841781014156e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.31 us    (1.7%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 417.99 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.1%)
Info: cfl dt = 8.223138475737504e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9354e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.229271290433258 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009783829843948735, dt = 8.223138475737504e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.2%)
   patch tree reduce : 1993.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 450.98 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.0%)
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    | 4.8857e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2069210062986415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00986606122870611, dt = 8.22349807826075e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 393.42 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.6%)
Info: cfl dt = 8.223931163930775e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9504e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2362321389777513 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009948296209488717, dt = 8.223931163930775e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 385.08 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (65.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    | 4.9313e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.22774755782573 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010030535521128025, dt = 8.224449519393963e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 2.15 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 405.26 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.1%)
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.9382e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2310016193301934 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010112780016321965, dt = 8.225066182056098e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 402.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.7%)
Info: cfl dt = 8.225795464796984e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9377e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.230915030005072 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010195030678142526, dt = 8.225795464796984e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 384.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.5%)
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.8700e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2005578690878314 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010277288632790496, dt = 8.226652964058996e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.3%)
   patch tree reduce : 2.15 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 378.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (63.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    | 5.0142e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.265940987243149 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010359555162431085, dt = 8.227655549751834e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.2%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 435.36 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.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.9005e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.214803126471108 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010441831717928604, dt = 8.228821335817372e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 1093.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 449.70 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.0%)
Info: cfl dt = 8.230169630766204e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8662e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.199644391043235 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010524119931286777, dt = 8.230169630766204e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.23 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.0%)
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.9008e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2156486985327586 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01060642162759444, dt = 8.231720868014472e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.4%)
   patch tree reduce : 1683.00 ns (0.1%)
   gen split merge   : 872.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 1405.60 us (98.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (72.0%)
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.8687e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.201552810694999 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010688738836274584, dt = 8.23349651639611e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.0%)
   patch tree reduce : 1973.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 508.31 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (68.4%)
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.8788e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2065957636155944 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010771073801438545, dt = 8.235518971778913e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 414.73 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.6%)
Info: cfl dt = 8.237811431250033e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8576e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1975196393742245 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010853428991156334, dt = 8.237811431250033e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.0%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 496.91 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.3%)
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    | 5.0604e+05 | 65536 |      2 | 1.295e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.289896832253096 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010935807105468834, dt = 8.240397751834099e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 418.57 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (63.9%)
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    | 5.1800e+05 | 65536 |      2 | 1.265e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.344773114955162 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011018211082987174, dt = 8.243302296144367e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.4%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 399.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.2%)
Info: cfl dt = 8.246549767725602e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1419e+05 | 65536 |      2 | 1.275e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.328344279567798 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011100644105948618, dt = 8.246549767725602e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 419.43 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.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    | 5.1770e+05 | 65536 |      2 | 1.266e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.345147743188065 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011183109603625873, dt = 8.250165039112761e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 430.48 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.2%)
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    | 5.1119e+05 | 65536 |      2 | 1.282e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.316669349826176 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011265611254017, dt = 8.254172975792788e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.1%)
   patch tree reduce : 1673.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 475.49 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 24.43 us   (4.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (67.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    | 5.1566e+05 | 65536 |      2 | 1.271e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3380872815265286 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011348152983774928, dt = 8.258598259313787e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 1283.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 384.58 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.5%)
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.3333e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.965826523531953 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011430738966368066, dt = 8.26346521273775e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 430.60 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (67.2%)
Info: cfl dt = 8.268797631486431e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0129e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.275497576123247 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011513373618495444, dt = 8.268797631486431e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.1%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 482.19 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.2%)
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.9706e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.257731963935258 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011596061594810308, dt = 8.274618622395014e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1984.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 476.47 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.1%)
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    | 5.0349e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.28856518907497 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011678807781034257, dt = 8.280950453479284e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (0.3%)
   patch tree reduce : 1763.00 ns (0.1%)
   gen split merge   : 952.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 1716.98 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.8%)
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    | 4.6178e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.100584110164218 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01176161728556905, dt = 8.287814416555488e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 2.15 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 385.44 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.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    | 4.8403e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.203619518396028 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011844495429734604, dt = 8.295230704445567e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.2%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 463.74 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.9%)
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.7533e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.165950174725714 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011927447736779059, dt = 7.25522632209416e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 438.91 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (66.3%)
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.8560e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9353081994452108 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 464.528806431 (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.21 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (58.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1303.00 ns (0.3%)
   patch tree reduce : 962.00 ns  (0.2%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 428.49 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (63.8%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (0.4%)
   patch tree reduce : 421.00 ns  (0.1%)
   gen split merge   : 361.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 300.00 ns  (0.1%)
   LB compute        : 330.86 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 1903.00 ns (0.6%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (61.5%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (0.4%)
   patch tree reduce : 411.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 321.00 ns  (0.1%)
   LB compute        : 335.40 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 1854.00 ns (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.92 us   (2.5%)
   patch tree reduce : 2.24 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 451.24 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (62.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6425e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.9% 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 :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 388.54 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.7747e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1563820735468133 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 8.221661412416737e-05, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 396.75 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7398e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1406244555644793 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00016443322824833475, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 433.67 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.6837e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.115312165130319 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0002466498423725021, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 385.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (64.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6788e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1130830627438897 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0003288664564966695, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 383.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (65.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6554e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1025364808533595 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004110830706208369, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 443.97 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.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.7373e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1395259421553767 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004932996847450043, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.5%)
   patch tree reduce : 1672.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 392.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (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.6797e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1134837295281397 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005755162988691717, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (0.4%)
   patch tree reduce : 1643.00 ns (0.1%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 1178.11 us (98.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (70.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.6764e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.111987670852031 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006577329129933391, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.0%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 507.88 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 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.8048e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1700047282716373 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007399495271175065, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 439.71 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7361e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1389795814040915 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008221661412416739, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 438.64 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.5818e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.069273261768293 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009043827553658413, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.5%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 1203.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 394.60 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (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.6464e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0984363884317174 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009865993694900086, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.5%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 407.13 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 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.6404e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.095722663612404 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010688159836141759, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 18.62 us   (3.8%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 456.70 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.6447e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.097698085282662 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011510325977383432, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 973.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 388.35 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (64.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7506e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.145520883025301 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012332492118625105, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 396.91 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.7960e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1660061203433605 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013154658259866777, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 411.82 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.7960e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1660121437484965 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001397682440110845, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 400.16 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.7594e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1494916620869025 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014798990542350123, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.4%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 403.98 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.7165e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.13009115697037 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015621156683591796, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 465.84 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (67.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.7582e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1489319467929 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001644332282483347, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.4%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 404.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.7490e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.144800587853148 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017265488966075142, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 455.49 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6864e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.116534399369534 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018087655107316815, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1703.00 ns (0.3%)
   gen split merge   : 1092.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 472.89 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.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.8979e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2120171503035415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018909821248558488, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 410.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8264e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1797639538086124 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019731987389800163, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 414.24 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.7348e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.138395724961462 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020554153531041836, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 383.65 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.8462e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.188686835177094 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002137631967228351, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.11 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.7306e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1364886431350496 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002219848581352518, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 383.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8035e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1694175842805308 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023020651954766855, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 420.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.8183e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1760794257220124 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023842818096008528, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 1143.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (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.8930e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2098312725549945 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00246649842372502, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 387.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9633e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.241593619787964 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025487150378491873, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 439.04 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (66.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8791e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2035519320859063 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0026309316519733546, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 474.45 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.8381e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1850423050240133 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002713148266097522, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 397.63 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.8020e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.168723998107033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002795364880221689, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 437.92 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.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.7830e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1601589556808016 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028775814943458565, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.3%)
   gen split merge   : 1152.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 461.52 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6380e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0946737281165446 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002959798108470024, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 1302.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 380.65 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.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.7967e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1663115809080016 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003042014722594191, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1432.00 ns (0.2%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 556.84 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.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.7134e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.128717105765393 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031242313367183584, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1953.00 ns (0.4%)
   gen split merge   : 1001.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 430.64 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 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    | 5.0239e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2689476034825673 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0032064479508425257, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 360.84 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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    | 5.0341e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.273542004395199 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003288664564966693, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 448.12 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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    | 5.0031e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2595435533367554 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033708811790908602, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.23 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 416.48 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.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.7816e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1595253031365176 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034530977932150275, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 1193.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 408.38 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.6112e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.082548413596395 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003535314407339195, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.5%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 391.44 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6216e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0872323254668093 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003617531021463362, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.4%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 410.71 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.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.6785e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1129637702296886 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036997476355875294, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 430.13 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (69.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.7989e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1673243639941107 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0037819642497116967, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (1.6%)
   patch tree reduce : 2.01 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 440.92 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.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.6828e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.114869413889859 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003864180863835864, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.4%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 413.24 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.8946e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2105490116626103 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003946397477960032, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.6%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 379.95 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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.9262e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.224809338851777 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0040286140920841994, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 375.17 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 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.8972e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.211702995335107 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004110830706208367, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 414.39 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7118e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1279756276033264 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004193047320332535, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 445.09 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8356e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.183911262333853 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004275263934456703, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 389.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.8346e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1834311979055876 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00435748054858087, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 425.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.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.9043e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2149077368285512 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004439697162705038, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 392.33 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7242e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1335704231546018 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004521913776829206, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.5%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 390.98 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7534e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1467604422558715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046041303909533735, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 419.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.6162e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.084813026511527 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004686347005077541, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 402.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7716e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.154990599682999 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004768563619201709, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 397.10 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9095e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2172837162409205 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004850780233325877, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 410.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.9023e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2140085691791236 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004932996847450044, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 397.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.6916e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1188841742274174 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005015213461574212, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.5%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 389.58 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.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.7746e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1563592307570207 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00509743007569838, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 410.48 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.3987e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9865639572151284 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005179646689822548, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 383.69 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8909e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.20887275338495 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005261863303946715, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 385.82 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.7673e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.153067630837824 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005344079918070883, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.2%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 437.56 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.8677e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.198379580097812 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005426296532195051, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 404.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.8242e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1787457048141046 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0055085131463192185, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 440.26 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.8115e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1730246695136493 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005590729760443386, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 510.62 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (72.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.6604e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.104776797814104 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005672946374567554, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 424.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6595e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1043465095692517 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005755162988691722, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 447.71 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.7031e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1240492704179066 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005837379602815889, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 2.17 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 496.18 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.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.7260e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.134410231507308 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005919596216940057, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 418.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.6723e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.110147268575254 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006001812831064225, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 1263.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 426.50 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (63.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7825e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.159896948133298 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006084029445188393, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 392.39 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.6945e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1201899232863144 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00616624605931256, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 444.31 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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    | 4.6981e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1217895723417226 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006248462673436728, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (1.7%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 381.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8380e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1849898971061075 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006330679287560896, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.6%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 377.96 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (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.5422e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0513718285629703 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0064128959016850635, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 405.66 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (71.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.6767e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1121184887883353 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006495112515809231, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 388.46 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 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.5537e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0565623722039144 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006577329129933399, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.2%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 454.13 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.7602e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1498370628093664 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006659545744057567, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.0%)
   patch tree reduce : 1984.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 505.95 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.6162e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.084796961312471 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006741762358181734, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 418.58 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.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.6657e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1071771801108925 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006823978972305902, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.7%)
   patch tree reduce : 1964.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 450.86 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.37 us    (72.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.6757e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1116937814538277 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00690619558643007, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 414.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.2%)
Info: cfl dt = 8.221661412416744e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6578e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.103577684506191 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0069884122005542375, dt = 8.221661412416744e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1583.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 386.95 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.8%)
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.7041e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1245000523552915 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007070628814678405, dt = 8.221661412416748e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 381.96 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.4%)
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.6375e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0944242224158724 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007152845428802573, dt = 8.221661412416758e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 405.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.2%)
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.6707e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1094324091398593 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007235062042926741, dt = 8.221661412416778e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 398.90 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.2%)
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.7756e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1568177659214633 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0073172786570509084, dt = 8.221661412416824e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 449.17 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.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.8229e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1781827070139466 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007399495271175077, dt = 8.221661412416916e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 396.21 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.3%)
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.7782e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1579874487920327 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0074817118852992465, dt = 8.2216614124171e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 423.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (74.1%)
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.7062e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.125440514825823 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007563928499423418, dt = 8.221661412417461e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 435.02 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.2%)
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.7205e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.131930578445966 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007646145113547592, dt = 8.221661412418163e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 405.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.6%)
Info: cfl dt = 8.221661412419503e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7788e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1582561381859837 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007728361727671774, dt = 8.221661412419503e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1964.00 ns (0.5%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 383.11 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.1%)
Info: cfl dt = 8.221661412422036e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7205e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1319271540172715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007810578341795969, dt = 8.221661412422036e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 374.75 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.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.7674e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1530862063896254 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007892794955920188, dt = 8.221661412426749e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 382.81 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (62.5%)
Info: cfl dt = 8.221661412435402e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7224e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.132752621422649 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007975011570044457, dt = 8.221661412435402e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.1%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 455.92 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (69.3%)
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.7281e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.135360460934526 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00805722818416881, dt = 8.221661412451093e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.4%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 396.36 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (67.4%)
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.7507e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1455411171763865 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008139444798293321, dt = 8.221661412479193e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 398.93 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (65.1%)
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.7702e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1543441531773513 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008221661412418113, dt = 8.221661412528907e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 378.11 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.2%)
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.6818e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.11442837359692 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008303878026543402, dt = 8.221661412615832e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 404.84 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (76.4%)
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.7513e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.145810605190098 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00838609464066956, dt = 8.221661412766083e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1973.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 414.22 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.1%)
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.7656e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.152285602966993 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00846831125479722, dt = 8.221661413022904e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 407.66 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.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.8110e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1727666298188115 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00855052786892745, dt = 8.221661413457113e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 378.76 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.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    | 4.7211e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.132209867968781 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00863274448306202, dt = 8.221661414183454e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 388.28 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.3%)
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.7690e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.153818598894075 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008714961097203855, dt = 8.22166141538588e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 383.90 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.0%)
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.9045e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.215017103784272 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008797177711357714, dt = 8.22166141735631e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 385.99 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.2%)
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.8983e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2122080584937778 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008879394325531276, dt = 8.221661420553325e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 372.75 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.7%)
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.8219e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1777188912011867 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00896161093973681, dt = 8.221661425690268e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 371.73 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.0%)
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.8853e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.206355441724073 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009043827553993711, dt = 8.221661433866073e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 394.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.1%)
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.6971e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.121330427642358 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009126044168332372, dt = 8.221661446757714e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 448.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.8%)
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.6150e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.08426117449352 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00920826078279995, dt = 8.221661466900497e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.58 us   (1.9%)
   patch tree reduce : 3.10 us    (0.6%)
   gen split merge   : 1182.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1683.00 ns (0.3%)
   LB compute        : 513.02 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 6.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (71.3%)
Info: cfl dt = 8.221661498092464e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6982e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.121823308542853 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009290477397468954, dt = 8.221661498092464e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 383.71 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.3%)
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.5106e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0371310341920092 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009372694012449879, dt = 8.221661545972298e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.1%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 501.99 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.0%)
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.8364e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1842710736479996 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009454910627909601, dt = 8.221661618837543e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 445.52 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (71.1%)
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.7676e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.153191533176553 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009537127244097977, dt = 8.221661728792332e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 386.48 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (65.4%)
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.7404e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1409149832335683 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0096193438613859, dt = 8.221661893342678e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1223.00 ns (0.3%)
   LB compute        : 419.70 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
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.7184e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1309893993427735 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009701560480319327, dt = 8.221662137593678e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 433.50 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.1%)
Info: cfl dt = 8.221662497248537e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6873e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1169406358277567 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009783777101695264, dt = 8.221662497248537e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1723.00 ns (0.4%)
   gen split merge   : 1173.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 396.84 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (65.4%)
Info: cfl dt = 8.221663022665312e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7913e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.163877552256758 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009865993726667749, dt = 8.221663022665312e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (1.5%)
   patch tree reduce : 2.05 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 440.27 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (67.1%)
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.7914e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1639450378769234 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009948210356894402, dt = 8.221663784295375e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 447.45 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.7%)
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.7933e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1648145011189044 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010030426994737355, dt = 8.221664879909285e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 431.75 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.7%)
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.6694e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1088463614443342 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010112643643536447, dt = 8.221666444111895e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 365.53 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.9%)
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    | 4.6803e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1137771617607277 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010194860307977567, dt = 8.221668660760116e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 379.51 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.9%)
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.8662e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.197739819815259 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010277076994585169, dt = 8.221671779023681e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.5%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 412.66 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.9%)
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.8857e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2065325896516437 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010359293712375406, dt = 8.221676133970351e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.4%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 420.76 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (74.6%)
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.9273e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.225335934123851 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01044151047371511, dt = 8.221682172710613e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.24 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.8%)
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.9422e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.23206689040119 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010523727295442216, dt = 8.2216904872983e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 386.34 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.2%)
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.9506e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.235864781825114 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0106059442003152, dt = 8.221701855747675e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 359.62 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.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.7723e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1553172646998355 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010688161218872677, dt = 8.221717292685503e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.53 us    (1.9%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 365.60 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (70.5%)
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.8009e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.168261432030339 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010770378391799533, dt = 8.221738111297747e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 403.88 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.7%)
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    | 5.0193e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.266897043993771 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01085259577291251, dt = 8.221765998341059e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 416.69 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.5%)
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.7509e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1456943198962506 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01093481343289592, dt = 8.22180310405221e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.6%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 384.89 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (68.4%)
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.7822e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.15982482041841 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011017031463936443, dt = 8.221852148784643e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 382.13 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (63.7%)
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.5063e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0352126571243523 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01109924998542429, dt = 8.221916548108689e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 395.72 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.5%)
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.9072e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.216320153207874 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011181469150905376, dt = 8.222000557907168e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 387.61 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.0%)
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.6997e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1226206472350184 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011263689156484447, dt = 8.222109440657938e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 391.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (66.5%)
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.7009e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.123162043525632 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011345910250891027, dt = 8.2222496535974e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 434.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.1%)
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.7861e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1616909456212197 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011428132747427001, dt = 8.222429058786043e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 2.07 us    (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 455.64 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.2%)
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.7204e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1320479192819586 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011510357038014861, dt = 8.222657154237282e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.2%)
   patch tree reduce : 2.06 us    (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 485.64 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.0%)
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.7683e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1537561711039235 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011592583609557235, dt = 8.222945324222079e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1652.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 433.07 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.9%)
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.8153e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.175081385137512 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011674813062799456, dt = 8.223307105634716e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.3%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 433.29 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.6%)
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.7594e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1498947805491375 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011757046133855803, dt = 8.223758465925945e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.2%)
   LB compute        : 430.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.4%)
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.5471e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.05412290168711 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011839283718515062, dt = 8.224318086622746e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.2%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 473.60 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.9%)
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.9177e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2216783666134394 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01192152689938129, dt = 7.847310061871032e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 384.63 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.3%)
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    | 5.0236e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1654911954555547 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 485.00654580500003 (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  1908.96 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.94 us    (60.7%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1393.00 ns (0.3%)
   patch tree reduce : 991.00 ns  (0.2%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 462.64 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.7%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1263.00 ns (0.4%)
   patch tree reduce : 391.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 300.00 ns  (0.1%)
   LB compute        : 345.75 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 1934.00 ns (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.7%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1192.00 ns (0.4%)
   patch tree reduce : 371.00 ns  (0.1%)
   gen split merge   : 350.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 281.00 ns  (0.1%)
   LB compute        : 313.09 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 1853.00 ns (0.6%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.93 us    (1.6%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 682.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 480.30 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (68.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.3366e+05 | 65536 |      2 | 1.511e-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 = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 384.64 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.7275e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1350707813927094 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 8.221661412416737e-05, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 401.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.8093e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.172042830902347 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00016443322824833475, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 401.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7975e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1667126247049406 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0002466498423725021, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.3%)
   patch tree reduce : 1964.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 435.58 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.6976e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.121558474476789 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0003288664564966695, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 396.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.7556e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.147749053692386 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004110830706208369, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.3%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 426.38 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.8597e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1947883941891604 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004932996847450043, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1273.00 ns (0.3%)
   LB compute        : 427.37 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.7081e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.126309601314127 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005755162988691717, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (0.3%)
   patch tree reduce : 1463.00 ns (0.1%)
   gen split merge   : 1322.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1021.00 ns (0.1%)
   LB compute        : 1814.90 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6211e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.087040553992235 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006577329129933391, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 402.69 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.6798e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.113543584569943 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007399495271175065, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 441.74 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.7331e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.137587188339401 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008221661412416739, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 419.96 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.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.6205e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0867738397794957 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009043827553658413, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.5%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 401.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7388e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1401586658957803 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009865993694900086, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 368.65 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (66.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7529e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1465287301719016 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010688159836141759, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 441.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.8847e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2060600716623586 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011510325977383432, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 406.67 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.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.7795e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1585486175208723 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012332492118625105, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 439.05 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.6990e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1221999388162622 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013154658259866777, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 381.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (11.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.0747e+05 | 65536 |      2 | 2.131e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3886179414169335 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001397682440110845, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.3%)
   patch tree reduce : 1633.00 ns (0.1%)
   gen split merge   : 1133.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.0%)
   LB compute        : 2.45 ms    (99.1%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.31 us    (71.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    | 2.2571e+05 | 65536 |      2 | 2.903e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.019392003977424 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014798990542350123, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 2.04 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 477.29 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 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.4154e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9941458183106868 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015621156683591796, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 368.11 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0571e+05 | 65536 |      2 | 1.296e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2839326481505484 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001644332282483347, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.7%)
   patch tree reduce : 1573.00 ns (0.2%)
   gen split merge   : 862.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 707.72 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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    | 4.6047e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.07962611482152 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017265488966075142, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 405.67 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.7305e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1364339891678044 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018087655107316815, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 433.05 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7920e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1642127001636804 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018909821248558488, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 1143.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 408.99 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 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.8478e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.189398141899724 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019731987389800163, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 394.87 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7639e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1515369705642433 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020554153531041836, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 414.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.8908e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.208829696360369 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002137631967228351, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 413.20 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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    | 4.8458e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1884873119672066 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002219848581352518, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 393.60 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8817e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2047263577528757 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023020651954766855, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 396.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8403e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1860146865967094 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023842818096008528, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 377.84 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.8117e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1731184506626358 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00246649842372502, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (0.3%)
   patch tree reduce : 1493.00 ns (0.1%)
   gen split merge   : 892.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.1%)
   LB compute        : 1705.07 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.6666e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.107580232432842 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025487150378491873, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 436.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (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.8029e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1691456795959634 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0026309316519733546, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 419.68 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.7616e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1504575889902613 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002713148266097522, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 410.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.7490e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1447681052025627 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002795364880221689, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.6%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 385.54 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7914e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.163938269911038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028775814943458565, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 418.95 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.5801e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0684858855834207 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002959798108470024, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 404.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (70.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.9113e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.218107383692126 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003042014722594191, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 375.62 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.8442e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1877626573216014 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031242313367183584, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.2%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 453.53 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7838e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.160526797232186 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0032064479508425257, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 372.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7676e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1532095085539686 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003288664564966693, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1573.00 ns (0.2%)
   gen split merge   : 962.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.1%)
   LB compute        : 994.02 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (70.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.9482e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.234733369342698 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033708811790908602, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1273.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 398.32 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.9638e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2417852005378234 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034530977932150275, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 374.64 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9527e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2367860509752253 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003535314407339195, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 1203.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.36 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8817e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.204699391839135 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003617531021463362, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 410.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.9511e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.236065180087579 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036997476355875294, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 376.68 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8390e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.185416040386604 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0037819642497116967, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 400.92 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (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.7975e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.166679570126066 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003864180863835864, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 451.54 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8003e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1679359247955783 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003946397477960032, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.4%)
   patch tree reduce : 1933.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 423.19 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8846e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.206008640161328 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0040286140920841994, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 384.75 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.8616e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1956300409754212 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004110830706208367, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 381.42 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5999e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0774553072875652 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004193047320332535, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.5%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 973.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 356.07 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8498e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1903321634188537 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004275263934456703, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 390.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.8206e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.177138245255483 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00435748054858087, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 446.34 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.8146e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.174405815549723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004439697162705038, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.6%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.3%)
   LB compute        : 373.72 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.8401e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.185911507343314 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004521913776829206, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.3%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 435.73 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.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.8816e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2046667117437737 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046041303909533735, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1403.00 ns (0.3%)
   LB compute        : 422.18 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9304e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2267272870850543 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004686347005077541, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 1142.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 461.47 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.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.5286e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0452540904849 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004768563619201709, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 397.46 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8465e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.188807563655014 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004850780233325877, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 452.81 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.8433e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.18738145881825 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004932996847450044, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1994.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.2%)
   LB compute        : 508.00 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.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.6926e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.119317226891632 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005015213461574212, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1964.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 447.48 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.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.8441e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.187722602354705 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00509743007569838, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 375.76 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.8119e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1732177449708368 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005179646689822548, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 442.39 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7831e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.160166381283889 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005261863303946715, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 382.93 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.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.5637e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0610889584821748 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005344079918070883, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 379.90 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5368e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.048968416271858 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005426296532195051, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 420.24 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8656e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.197453024600632 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0055085131463192185, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 388.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7269e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1348077411173048 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005590729760443386, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (0.3%)
   patch tree reduce : 1804.00 ns (0.1%)
   gen split merge   : 1011.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.1%)
   LB compute        : 1710.91 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.68 us    (64.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7330e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.137568616819778 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005672946374567554, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 402.78 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.8307e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1816675448993665 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005755162988691722, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 402.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.8008e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1681611640171785 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005837379602815889, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1153.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 428.92 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.8572e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1936451771174137 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005919596216940057, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 415.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8093e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1720262858278527 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006001812831064225, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 358.17 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7912e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.163864326153755 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006084029445188393, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 429.20 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.7985e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1671437271755005 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00616624605931256, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 382.11 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (63.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8049e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1700324590595272 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006248462673436728, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 393.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.8158e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1749680930037063 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006330679287560896, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 392.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8619e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1957844742685806 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0064128959016850635, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 395.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7589e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1492803827150784 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006495112515809231, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 480.31 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.8013e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1684221620931 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006577329129933399, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.6%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 380.58 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.7896e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1631457972161887 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006659545744057567, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 398.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.7587e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1491611037621747 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006741762358181734, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 1233.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.3%)
   LB compute        : 402.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7829e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1601205199356235 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006823978972305902, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 410.18 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.4%)
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    | 4.8443e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.187825807109455 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00690619558643007, dt = 8.221661412416739e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 448.44 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.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    | 4.7794e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.15853553594775 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0069884122005542375, dt = 8.221661412416741e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 368.47 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (65.4%)
Info: cfl dt = 8.221661412416745e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7429e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1420232589006627 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007070628814678405, dt = 8.221661412416745e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 415.96 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.4%)
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.7397e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.140599298084348 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007152845428802573, dt = 8.221661412416756e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.77 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.9%)
Info: cfl dt = 8.22166141241678e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8339e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1831509384007406 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007235062042926741, dt = 8.22166141241678e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 375.35 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.7%)
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.8294e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1811138371924015 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0073172786570509084, dt = 8.221661412416828e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 485.84 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.0%)
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.6153e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.084390347525698 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007399495271175077, dt = 8.221661412416922e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.3%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 383.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.1%)
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.7125e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.12829728254208 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0074817118852992465, dt = 8.221661412417113e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1594.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 400.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.3%)
Info: cfl dt = 8.221661412417488e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7858e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1613918160488623 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007563928499423418, dt = 8.221661412417488e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 372.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.3%)
Info: cfl dt = 8.221661412418219e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7787e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.158211868676811 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007646145113547592, dt = 8.221661412418219e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 389.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.1%)
Info: cfl dt = 8.221661412419614e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9194e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2217573041617107 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007728361727671775, dt = 8.221661412419614e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 374.60 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.3%)
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.7757e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1568488070982226 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007810578341795971, dt = 8.221661412422248e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.1%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 475.62 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.3%)
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.4056e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9896969078014473 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007892794955920194, dt = 8.221661412427148e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 403.29 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.3%)
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.3656e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.971655655544631 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007975011570044465, dt = 8.221661412436144e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 414.22 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.6%)
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.7840e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1605750573524074 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008057228184168827, dt = 8.221661412452451e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 391.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (62.1%)
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.8562e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.193213787383624 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008139444798293352, dt = 8.221661412481648e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 378.91 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.3%)
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.8332e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1827925295034993 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008221661412418169, dt = 8.221661412533293e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 433.59 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.0%)
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.8428e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.187131424567428 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008303878026543502, dt = 8.221661412623577e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 411.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.1%)
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.8239e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.178630317360193 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008386094640669738, dt = 8.2216614127796e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 383.28 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (63.7%)
Info: cfl dt = 8.221661413046229e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8240e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1786706655562362 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008468311254797535, dt = 8.221661413046229e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 405.87 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (63.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.6726e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1102977195042514 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008550527868927998, dt = 8.221661413496921e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1422.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 386.56 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.8%)
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.7938e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.165036377329677 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008632744483062968, dt = 8.221661414250668e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 405.38 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.9%)
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.7268e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.134743473588339 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008714961097205475, dt = 8.221661415498194e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 371.84 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.5%)
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.7808e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1591584805970254 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008797177711360456, dt = 8.221661417542081e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 1263.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 409.43 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.4%)
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.7113e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.127754011231978 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008879394325535877, dt = 8.22166142085755e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 378.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.8%)
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.7951e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.165591697647265 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008961610939744452, dt = 8.221661426183641e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 415.12 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.6%)
Info: cfl dt = 8.221661434658597e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7485e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1445677949561404 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00904382755400629, dt = 8.221661434658597e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 434.46 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (68.8%)
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.6813e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.114225824074895 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009126044168352875, dt = 8.221661448018937e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 401.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.4%)
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.8437e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1875784131555815 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009208260782833065, dt = 8.22166146888932e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.4%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 367.84 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.6%)
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.8331e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1827626998201337 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009290477397521958, dt = 8.221661501200618e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 350.34 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.8%)
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.7838e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1605031959724 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009372694012533964, dt = 8.221661550787187e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 381.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.6%)
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.8239e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.178606123345447 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009454910628041836, dt = 8.221661626232199e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 493.37 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.2%)
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.8194e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1765878509271817 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009537127244304158, dt = 8.221661740053047e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.8%)
   patch tree reduce : 1293.00 ns (0.2%)
   gen split merge   : 871.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.2%)
   LB compute        : 692.69 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (65.9%)
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.8488e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1898771785947466 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00961934386170469, dt = 8.221661910348403e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 371.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (63.8%)
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.8486e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.189771201052855 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009701560480808172, dt = 8.221662163065925e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.3%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 455.65 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.7%)
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.8801e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2040140068255165 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009783777102438832, dt = 8.221662535096405e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 407.15 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (65.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.8356e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1839067746520042 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009865993727789795, dt = 8.221663078457541e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 369.37 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.0%)
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.8088e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.171797846377099 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00994821035857437, dt = 8.221663865900575e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 383.42 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.8%)
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.8001e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1678861879463383 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010030426997233376, dt = 8.221664998356479e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 381.74 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.3%)
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.8370e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.184528046641781 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01011264364721694, dt = 8.221666614737061e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 412.79 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.2%)
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.8483e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1896294591833008 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010194860313364312, dt = 8.221668904720291e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 371.36 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (65.8%)
Info: cfl dt = 8.22167212527877e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8105e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.172549078194977 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010277077002411514, dt = 8.22167212527877e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 390.11 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.8%)
Info: cfl dt = 8.221676621854156e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7967e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1663161318741815 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010359293723664302, dt = 8.221676621854156e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 462.99 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.8%)
Info: cfl dt = 8.221682855236433e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9511e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2360478120108245 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010441510489882844, dt = 8.221682855236433e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 421.77 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (66.2%)
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.8364e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1842749940311257 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010523727318435209, dt = 8.221691435370798e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 411.97 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.7%)
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.9054e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.215428306677892 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010605944232788917, dt = 8.22170316348068e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.5%)
   patch tree reduce : 1402.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 358.34 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.1%)
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.8494e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.190153623338866 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010688161264423724, dt = 8.221719084054263e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 397.63 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.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.5012e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.03287787094574 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010770378455264266, dt = 8.221740548382683e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 374.63 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.3%)
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.8558e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.193064379833682 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010852595860748092, dt = 8.221769291446321e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 401.34 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.7%)
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.7556e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1477750998276464 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010934813553662555, dt = 8.221807524004319e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (0.7%)
   patch tree reduce : 1553.00 ns (0.2%)
   gen split merge   : 962.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 741.94 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (65.3%)
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.8805e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.204220542079095 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011017031628902598, dt = 8.221858041731437e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 383.00 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.6%)
Info: cfl dt = 8.221924353143362e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8900e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2085243916083854 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011099250209319914, dt = 8.221924353143362e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 403.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.2%)
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    | 5.0692e+05 | 65536 |      2 | 1.293e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.289454692955878 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011181469452851348, dt = 8.222010827833035e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 374.95 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.3%)
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.8617e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1957801524975085 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011263689561129678, dt = 8.222122866182599e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 381.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.6%)
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.9234e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2236810118581065 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011345910789791504, dt = 8.222267091196441e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1703.00 ns (0.3%)
   gen split merge   : 1182.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 482.51 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.9%)
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    | 4.8575e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1939368786389366 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011428133460703468, dt = 8.222451562402441e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 378.06 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.5%)
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.9315e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.227402465887646 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011510357976327493, dt = 8.222686010880407e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 388.67 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.9%)
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.7517e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1462927055743655 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011592584836436298, dt = 8.222982093397195e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 1273.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 403.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.2%)
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.7883e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.162879698810441 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01167481465737027, dt = 8.223353662370028e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 465.44 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.8%)
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    | 4.6778e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.113076130490944 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01175704819399397, dt = 8.223817046970688e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1362.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 381.76 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.9%)
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.8277e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1809180328612303 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011839286364463675, dt = 8.22439133917082e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 381.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.7%)
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.8724e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2012339317000276 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011921530277855384, dt = 7.846972214461609e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1253.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 368.27 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.9%)
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.8895e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.107620105798125 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 505.58490457500005 (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.15 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.01 us    (59.3%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (0.3%)
   patch tree reduce : 972.00 ns  (0.2%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 475.27 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.0%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1323.00 ns (0.4%)
   patch tree reduce : 431.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 270.00 ns  (0.1%)
   LB compute        : 356.44 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 1934.00 ns (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (65.5%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (0.4%)
   patch tree reduce : 421.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 271.00 ns  (0.1%)
   LB compute        : 388.75 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 1964.00 ns (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=False
Info: time since start : 505.75071592200004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1934.00 ns (0.4%)
   gen split merge   : 1133.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 445.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (70.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.5203e+05 | 65536 |      2 | 1.450e-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 = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 397.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.7080e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.126285313799464 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 8.221661412416737e-05, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1554.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 382.26 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (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.6802e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1137131167930474 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00016443322824833475, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 443.78 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.6644e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.106561151075929 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0002466498423725021, dt = 5.335015762749794e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 442.43 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6966e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3763860653254183 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 506.521820498 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.00030000000000000003, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1143.00 ns (0.3%)
   LB compute        : 430.54 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.44 us    (74.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7014e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1232760214895534 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00038221661412416743, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.1%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 438.51 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.6353e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0934246319722596 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00046443322824833483, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 409.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.6112e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0825338192577503 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0005466498423725022, dt = 5.335015762749783e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 382.66 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.6457e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3614636592708451 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 507.15682628800005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0006000000000000001, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.7%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 470.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (64.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6489e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.09956254862798 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006822166141241675, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.4%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 418.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.6350e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0933092068201247 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007644332282483349, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 440.45 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (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.6454e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.097980745382758 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008466498423725023, dt = 5.335015762749783e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.45 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.5919e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3457079296428203 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 507.79068202800005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0009000000000000001, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.6%)
   patch tree reduce : 2.13 us    (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 473.18 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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.7019e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1235371416375606 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009822166141241675, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1253.00 ns (0.3%)
   LB compute        : 384.39 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.6505e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1003126425511653 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010644332282483348, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 460.16 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (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.6890e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.117698286206616 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001146649842372502, dt = 5.3350157627498045e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.50 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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    | 4.8004e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4068151669418145 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 508.415876936 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0012000000000000001, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (1.7%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 418.43 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.6854e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1160728306077075 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012822166141241674, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1984.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 441.21 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.6126e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.08317789382826 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013644332282483347, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 409.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5327e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0470788944073974 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001446649842372502, dt = 5.3350157627498045e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.0%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 503.61 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.5658e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3380465892776479 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 509.051897885 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0015, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.84 us    (1.6%)
   patch tree reduce : 1924.00 ns (0.4%)
   gen split merge   : 1293.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 453.92 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (69.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.5614e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.060054137231421 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015822166141241673, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1363.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 359.90 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 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.5183e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.040575283525407 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016644332282483346, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 391.37 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (70.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.5991e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0770758209721643 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001746649842372502, dt = 5.335015762749826e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.1%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 475.81 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (69.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.7458e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3908128692737651 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 509.689542571 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0018000000000000002, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1673.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 471.15 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6580e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.103702005061444 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018822166141241675, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 415.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.6975e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.121527619611464 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001964433228248335, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 375.63 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.7089e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1266749127429176 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020466498423725023, dt = 5.3350157627498045e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 399.45 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
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.6370e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.358936054414855 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 510.31518107700003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0021000000000000003, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.7%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 411.16 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (66.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7009e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1230763363279754 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0021822166141241676, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 377.32 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (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.6648e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.10677851078426 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002264433228248335, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 461.94 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (68.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7138e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.128902127298089 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002346649842372502, dt = 5.3350157627498045e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 377.17 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5982e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.347544590371987 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 510.944521666 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0024000000000000002, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (1.6%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 433.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.5351e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0482049746348325 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024822166141241675, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 374.47 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6521e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1010073885189957 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002564433228248335, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 431.83 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (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.6851e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1159112996019616 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002646649842372502, dt = 5.3350157627498045e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 406.48 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (66.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6431e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3607245116012967 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 511.576266254 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0027, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.6%)
   patch tree reduce : 2.01 us    (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 457.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.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.7828e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1600471206063974 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027822166141241674, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 384.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.6398e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.095448370357777 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028644332282483347, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1543.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 366.88 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (65.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6497e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0999612626288204 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002946649842372502, dt = 5.3350157627498045e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 397.59 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6304e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3569855521879302 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 512.2020179350001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.003, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.44 us    (1.5%)
   patch tree reduce : 1633.00 ns (0.3%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 478.11 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.6092e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.081657215464731 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030822166141241674, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 386.48 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.6402e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.095635665987341 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031644332282483346, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 421.29 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6354e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.093480009767617 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003246649842372502, dt = 5.335015762749848e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 399.38 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5810e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.342502535596427 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 512.8360784 (s)                                          [Godunov][rank=0]
amr::Godunov: t = 0.0033000000000000004, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (1.5%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 445.33 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.6728e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1103527294989566 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033822166141241677, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 392.78 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.6220e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0874431381339016 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003464433228248335, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 421.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.6238e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.08824395473698 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0035466498423725023, dt = 5.3350157627498045e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.2%)
   patch tree reduce : 1994.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 458.87 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.6275e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3561437611724279 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 513.4673015230001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.0036000000000000003, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 424.95 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.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.7300e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.136184920310411 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036822166141241676, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 458.69 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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    | 4.6319e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.091892200375176 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003764433228248335, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.2%)
   LB compute        : 406.36 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.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.6129e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.083336342507376 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003846649842372502, dt = 5.3350157627498045e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 457.39 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.5062e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3205787738690793 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 514.11483667 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.0039000000000000003, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 402.39 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6691e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1086888433767514 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0039822166141241675, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 427.30 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6569e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1031827521381308 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004064433228248335, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1632.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 402.25 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.6565e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.103032298022352 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004146649842372503, dt = 5.335015762749761e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 425.99 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
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.6581e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3651056975700877 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 514.745406656 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.004200000000000001, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.5%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 460.88 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.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.7182e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1308918993269965 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004282216614124168, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 370.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 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.6790e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1131939800578454 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004364433228248336, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 402.16 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.6073e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.080783090098173 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004446649842372504, dt = 5.3350157627496744e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 372.58 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.6019e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3486323335562809 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 515.375375694 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0045000000000000005, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (1.7%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 414.05 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6463e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.098403851875922 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004582216614124168, dt = 8.221661412416737e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 399.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.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.3753e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9760164198337147 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004664433228248336, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1973.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 411.85 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.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.5854e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.07089770070178 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004746649842372504, dt = 5.3350157627496744e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.1%)
   patch tree reduce : 1522.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 464.37 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (65.0%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6803e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.371609946585058 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 516.017939454 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0048000000000000004, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 437.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.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.4487e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0091528779847194 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004882216614124168, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 401.84 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.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.6405e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0957682797854753 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004964433228248336, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 369.75 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.5721e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.064913395475996 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005046649842372504, dt = 5.3350157627496744e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 400.75 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.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.6876e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3737471645554498 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 516.654354615 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0051, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 448.11 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.6426e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0967310897729794 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005182216614124168, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 395.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.7405e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1409535853509043 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005264433228248336, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 374.94 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.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.6509e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.100489315728461 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0053466498423725035, dt = 5.3350157627496744e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 378.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.8%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7287e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3858005481088935 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 517.282046666 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0054, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 441.61 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.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.7867e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1618357408647713 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005482216614124168, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 367.24 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.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.7809e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1591800588148433 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005564433228248336, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 414.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.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.7295e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1359883491135734 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0056466498423725035, dt = 5.3350157627496744e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.1%)
   patch tree reduce : 1793.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 514.49 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.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.5032e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3197125111673849 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 517.909735428 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0057, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 426.69 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.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.6844e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1156281730788713 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005782216614124168, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 380.65 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (63.6%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7486e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.144614237843498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005864433228248336, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 405.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.8%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6988e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1221072296421086 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005946649842372503, dt = 5.3350157627496744e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 389.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.2%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6894e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3742864878477241 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 518.536016729 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.006, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.92 us    (1.6%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 463.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (73.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.6981e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.121797527445514 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006082216614124168, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 382.94 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.0%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7346e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1382751639614637 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006164433228248336, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 384.42 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.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.6598e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.104503840519339 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006246649842372503, dt = 5.335015762749761e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 365.86 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.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.7741e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3991133151681625 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 519.159622222 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.006300000000000001, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 472.75 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.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.6598e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.104503346719214 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006382216614124169, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1632.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 434.10 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.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.6536e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1016841634837418 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006464433228248336, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 406.54 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.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    | 2.9288e+05 | 65536 |      2 | 2.238e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3227158254241491 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006546649842372504, dt = 5.3350157627496744e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 417.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.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.5895e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3450077795646767 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 519.876450212 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.006600000000000001, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.98 us   (5.2%)
   patch tree reduce : 1943.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 420.58 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.8%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6496e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0998785906932493 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0066822166141241686, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1743.00 ns (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 355.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.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.6929e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1194314100451463 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006764433228248336, dt = 8.22166141241674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.3%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 382.29 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.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.6256e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0890471406302686 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006846649842372504, dt = 5.3350157627496744e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 383.35 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.5%)
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.7214e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3836482883568995 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 520.5037317680001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.006900000000000001, dt = 8.221661412416741e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.10 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 449.16 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.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.6606e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.104881635584412 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0069822166141241685, dt = 8.221661412416745e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.03 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.1%)
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.6604e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1047847755354394 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007064433228248336, dt = 8.221661412416756e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 393.67 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.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.6594e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1043423503065015 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007146649842372504, dt = 5.3350157627496744e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.5%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 383.27 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.9%)
Info: cfl dt = 8.221661412416797e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6728e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3694148343494106 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 521.1360024940001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.007200000000000001, dt = 8.221661412416797e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.7%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 434.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.8%)
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.7085e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1265143258673316 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007282216614124168, dt = 8.221661412416859e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (0.3%)
   patch tree reduce : 1553.00 ns (0.1%)
   gen split merge   : 871.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.1%)
   LB compute        : 1664.39 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.2%)
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.6890e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1176701950222308 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007364433228248337, dt = 8.221661412416983e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 392.40 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.5%)
Info: cfl dt = 8.221661412417222e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7595e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1495170446288214 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0074466498423725064, dt = 5.335015762749414e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 415.88 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.6%)
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.7166e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3822583260521049 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 521.759672861 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.007500000000000001, dt = 8.2216614124175e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.5%)
   patch tree reduce : 2.06 us    (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 477.77 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.6%)
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.3639e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9708467436153478 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007582216614124175, dt = 8.221661412418221e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1283.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 368.77 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.7%)
Info: cfl dt = 8.221661412419575e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5416e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.051131465331431 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007664433228248358, dt = 8.221661412419575e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.4%)
   patch tree reduce : 1943.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 416.83 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.4%)
Info: cfl dt = 8.221661412422092e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6553e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1024552338961966 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007746649842372553, dt = 5.3350157627447305e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1652.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 393.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.0%)
Info: cfl dt = 8.22166141242484e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5923e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3458282255321308 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 522.4055797890001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.0078000000000000005, dt = 8.22166141242484e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 993.00 ns  (0.2%)
   LB compute        : 444.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.9%)
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.6658e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1072329578514495 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007882216614124249, dt = 8.221661412431759e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 444.32 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (64.5%)
Info: cfl dt = 8.221661412444174e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7488e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.144698744830476 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007964433228248566, dt = 8.221661412444174e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 408.16 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.1%)
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    | 4.6030e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.078845311229043 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008046649842373008, dt = 5.3350157626993674e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.5%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 372.98 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.5%)
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    | 4.6216e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3544109079386315 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 523.038967468 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.008100000000000001, dt = 8.221661412489296e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (1.5%)
   patch tree reduce : 2.21 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 445.22 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.7%)
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.7526e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1464178349786 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008182216614124894, dt = 8.221661412545618e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 390.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (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    | 4.6036e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.07910188228553 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00826443322825035, dt = 8.221661412642587e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.5%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 374.19 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.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.6289e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.090560461939804 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008346649842376777, dt = 5.335015762322412e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (0.1%)
   patch tree reduce : 1603.00 ns (0.0%)
   gen split merge   : 1152.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.0%)
   LB compute        : 11.01 ms   (99.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.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.2824e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2550001945199258 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 523.680775111 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.008400000000000001, dt = 8.221661412974226e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1933.00 ns (0.4%)
   gen split merge   : 1073.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 478.90 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.8%)
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.6782e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1127962586326974 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008482216614129744, dt = 8.221661413369184e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 379.98 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.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.4744e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0207569302407107 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008564433228263436, dt = 8.221661414023743e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1243.00 ns (0.3%)
   LB compute        : 405.79 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.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.5184e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0406586423014255 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008646649842403674, dt = 5.335015759632723e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1562.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 411.95 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.4%)
Info: cfl dt = 8.221661416141767e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6031e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.348987105121754 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 524.326282693 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.008700000000000001, dt = 8.221661416141767e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.9%)
   patch tree reduce : 2.49 us    (0.6%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 402.49 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.5%)
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.6659e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1072479763920837 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008782216614161419, dt = 8.221661418557305e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 386.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.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.6323e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0921042823401845 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008864433228346992, dt = 8.221661422422239e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 432.30 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.7%)
Info: cfl dt = 8.221661428554604e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5979e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0765414392896933 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008946649842571215, dt = 5.3350157428785905e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 408.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.7%)
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.5907e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3453597940967392 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 524.965178337 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.009000000000000001, dt = 8.221661434307755e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.52 us    (1.7%)
   patch tree reduce : 1984.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 426.96 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (68.6%)
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.5859e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.07113537676679 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009082216614343079, dt = 8.221661447329104e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 471.31 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.8%)
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.6111e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.082491628754392 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00916443322881637, dt = 8.221661467494495e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 384.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.8%)
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.6366e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0940368222564447 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009246649843491314, dt = 5.335015650868684e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 1233.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 405.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.4%)
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.6304e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3569868755906382 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 525.6029834540001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.009300000000000001, dt = 8.221661526653278e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1924.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 427.77 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.4%)
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.7295e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.135963545964949 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009382216615266534, dt = 8.221661589079605e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 427.53 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.9%)
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.6198e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0864315497438866 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00946443323115733, dt = 8.221661682850214e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 386.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.5%)
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.5712e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.064488014004207 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009546649847985833, dt = 5.33501520141675e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 409.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.7%)
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.6380e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3592143486809893 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 526.236807688 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.009600000000000001, dt = 8.221661946123446e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (1.5%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 444.70 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.1%)
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.5416e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0511252162867946 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009682216619461236, dt = 8.221662214317213e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1643.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 487.68 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (69.7%)
Info: cfl dt = 8.22166260577189e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6510e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.100532050021103 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009764433241604408, dt = 8.22166260577189e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 386.70 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.6%)
Info: cfl dt = 8.22166317326734e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5626e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0606069212880493 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009846649867662127, dt = 5.335013233787392e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 384.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.2%)
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.5772e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.34141196030379 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 526.874327607 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0099, dt = 8.221663660463793e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 441.87 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (62.7%)
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.6619e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1054391161828616 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00998221663660464, dt = 8.221664699651166e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 396.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.6%)
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.5908e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0733271441776613 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01006443328360115, dt = 8.221666175779364e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 410.84 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.6%)
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.5831e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0698503868864955 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010146649945358945, dt = 5.335005464105619e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 410.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.7%)
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.6468e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3617879316174293 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 527.5099847480001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.0102, dt = 8.221670001062295e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 419.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.1%)
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.6717e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1098570877728324 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010282216700010624, dt = 8.221673652452565e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 369.96 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.6%)
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.4661e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.017030938625704 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01036443343653515, dt = 8.221678706520262e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 387.07 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.6%)
Info: cfl dt = 8.22168565951049e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6115e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.082670919405752 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010446650223600352, dt = 5.334977639964884e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 394.66 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (64.0%)
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.5607e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.336566709824715 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 528.1512347610001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.0105, dt = 8.221691327777472e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 519.98 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (72.4%)
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.5389e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0499145407471686 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010582216913277775, dt = 8.221703014816065e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.5%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 386.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
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.7048e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1248394328179674 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010664433943425936, dt = 8.221718794449508e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 405.05 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.4%)
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.6541e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.101920397262441 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010746651131370431, dt = 5.334886862956925e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 410.37 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.4%)
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.5945e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3464278147743596 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 528.7863247480001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.0108, dt = 8.221756827208893e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 455.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.8%)
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.6276e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.08998462065211 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010882217568272089, dt = 8.221791028250544e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 384.37 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.5%)
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.5091e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.036494008330864 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010964435478554593, dt = 8.221836110819141e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1914.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 419.95 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.1%)
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.5329e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0472564105547293 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011046653839662786, dt = 5.334616033721498e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1572.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 452.84 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.5%)
Info: cfl dt = 8.221941115122871e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5579e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3356535281388568 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 529.433126793 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0111, dt = 8.221941115122871e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 27.01 us   (5.6%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 442.32 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (70.3%)
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.5755e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0664874733479337 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01118221941115123, dt = 8.222032894483579e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 392.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.4%)
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.4298e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.000731664148968 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011264439740096065, dt = 8.222151083568567e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 435.58 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.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.2898e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9374926030734096 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01134666125093175, dt = 5.333874906825013e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.1%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 450.97 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.9%)
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.5521e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3337727435309819 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 530.089631404 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0114, dt = 8.222417351668559e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.7%)
   patch tree reduce : 2.40 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 475.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.5700e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0641214045283984 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011482224173516686, dt = 8.222643719360103e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 379.16 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.5%)
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.5167e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0401139299527484 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011564450610710287, dt = 8.222928642163885e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 403.04 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.5%)
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.3172e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9500734051810398 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011646679897131926, dt = 5.332010286807423e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 381.28 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.9%)
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.6014e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3477403652977045 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 530.7432701800001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.0117, dt = 8.223549926029232e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.27 us    (1.6%)
   patch tree reduce : 2.40 us    (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 496.67 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (73.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.4819e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0246235954436194 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011782235499260293, dt = 8.224063974063606e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 411.75 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.1%)
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.5384e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.050262813681349 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01186447613900093, dt = 8.224696627570122e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 414.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.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.5224e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0432050264982236 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01194672310527663, dt = 5.3276894723369717e-05
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 406.82 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.4%)
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.4628e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3060729976033911 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 531.397476319 (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  18.85 ms                            [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.61 us   (78.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (0.3%)
   patch tree reduce : 1373.00 ns (0.2%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.1%)
   LB compute        : 674.21 us  (98.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (62.2%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (0.3%)
   patch tree reduce : 472.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 291.00 ns  (0.1%)
   LB compute        : 573.05 us  (98.6%)
   LB move op cnt    : 0
   LB apply          : 2.17 us    (0.4%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.1%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (0.3%)
   patch tree reduce : 441.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 250.00 ns  (0.0%)
   LB compute        : 570.17 us  (98.6%)
   LB move op cnt    : 0
   LB apply          : 2.09 us    (0.4%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running none hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1262.00 ns (0.2%)
   gen split merge   : 782.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 801.00 ns  (0.1%)
   LB compute        : 606.34 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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    | 2.7558e+05 | 65536 |      2 | 2.378e-01 | 0.0% |   1.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 :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (0.9%)
   patch tree reduce : 1834.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.1%)
   LB compute        : 616.26 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7144e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.59494943424191 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003961660569039922, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (0.6%)
   patch tree reduce : 1793.00 ns (0.2%)
   gen split merge   : 1292.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.1%)
   LB compute        : 877.30 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 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.8419e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.36864137776263 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007923321138079843, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.9%)
   patch tree reduce : 1813.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.2%)
   LB compute        : 634.18 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.9264e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.20814209840738 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011884981707119765, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.1%)
   patch tree reduce : 1724.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.2%)
   LB compute        : 494.50 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8748e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.08664981171982 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015846642276159686, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (0.7%)
   patch tree reduce : 1803.00 ns (0.2%)
   gen split merge   : 812.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.1%)
   LB compute        : 724.01 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.8329e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.17297137303913 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019808302845199608, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 383.92 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8980e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.5898968746296 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02376996341423953, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 378.73 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9362e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.42254591316286 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02773162398327945, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (0.8%)
   patch tree reduce : 1613.00 ns (0.2%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 741.63 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7306e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.9470753305427 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03169328455231937, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 409.00 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.7640e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.67501411408398 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03565494512135929, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 465.86 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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    | 4.7084e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.46448552291209 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03961660569039921, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 402.29 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
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.8827e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.25850004894751 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04357826625943913, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 402.87 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.9261e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.20207086685444 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047539926828479045, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.1%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 455.09 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0337e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.54313880305078 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051501587397518964, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 420.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.9126e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.90749846723119 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05546324796655888, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 446.11 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 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    | 5.0469e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.83054548918906 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0594249085355988, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.1%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 451.33 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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    | 5.0699e+05 | 65536 |      2 | 1.293e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.33086056195208 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06338656910463872, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 389.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0070e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.96324414395936 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06734822967367864, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.2%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 455.39 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0841e+05 | 65536 |      2 | 1.289e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.64152344554057 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07130989024271855, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.2%)
   patch tree reduce : 2.20 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 462.37 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1265e+05 | 65536 |      2 | 1.278e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.56360281953712 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07527155081175847, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 433.30 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0510e+05 | 65536 |      2 | 1.297e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.91969467267405 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07923321138079839, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 391.50 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.9411e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.5286075848236 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08319487194983831, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 454.48 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.9160e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.98277985319962 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08715653251887823, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 419.95 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (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.8018e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.49701300553652 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09111819308791815, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.3%)
   patch tree reduce : 1854.00 ns (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 375.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.8572e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.70310992816259 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09507985365695806, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 405.27 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.8053e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.57270135726598 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09904151422599798, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1342.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 427.13 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8739e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.06672202450548 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1030031747950379, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 417.79 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7057e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.40630742646066 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10696483536407782, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 460.26 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.8554e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.66328401298506 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11092649593311774, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 459.10 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.6627e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.47005122014095 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11488815650215765, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.2%)
   LB compute        : 464.52 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 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.9611e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.96393006406299 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11884981707119757, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 386.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.8818e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.23879492441564 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12281147764023749, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 400.38 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.8186e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.86257176010213 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1267731382092774, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 390.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.9440e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.59177099981724 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13073479877831734, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 469.56 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9456e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.62546495275114 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13469645934735727, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.1%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 470.11 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.5597e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.22758731370571 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1386581199163972, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1833.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 539.83 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6768e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.77656940445692 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14261978048543714, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (1.5%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 451.38 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.7304e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.94263920448267 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14658144105447707, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 432.77 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 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.7513e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.39694840165136 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.150543101623517, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.1%)
   patch tree reduce : 1693.00 ns (0.3%)
   gen split merge   : 1353.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 473.18 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.8659e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.89288224656035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15450476219255693, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 412.53 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.8483e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.50801862577983 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15846642276159686, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 372.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (63.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9379e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.45791595127753 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1624280833306368, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1794.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 373.65 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.9482e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.68280996107933 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16638974389967673, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 404.02 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6424e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.02712591391432 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17035140446871666, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 386.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.6677e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.5787641150414 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1743130650377566, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 412.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.7950e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.35007272098925 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17827472560679652, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.2%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 449.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.5628e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.29498743653106 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18223638617583646, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 416.29 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8717e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.0192625487651 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1861980467448764, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 437.24 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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.9176e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.0178303261108 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19015970731391632, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 393.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.8761e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.11318579076719 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19412136788295625, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 407.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.9420e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.54708857995672 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19808302845199618, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 396.70 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7737e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.88519915048929 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20204468902103612, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 458.28 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.8640e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.85078810377601 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20600634959007605, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 410.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.4%)
Info: cfl dt = 0.0039616605690399225                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8759e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.1095020538992 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20996801015911598, dt = 0.0039616605690399225
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 429.41 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (65.6%)
Info: cfl dt = 0.003961660569039923                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7789e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.99938367796305 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2139296707281559, dt = 0.003961660569039923
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 416.02 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.3%)
Info: cfl dt = 0.003961660569039926                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9194e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.05540691471295 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21789133129719584, dt = 0.003961660569039926
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 414.68 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (65.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.4897e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.7061687670641 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22185299186623578, dt = 0.003961660569039928
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 403.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.9%)
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.9094e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.83883978612407 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2258146524352757, dt = 0.003961660569039934
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 386.65 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (66.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.8998e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.62941760288986 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22977631300431564, dt = 0.003961660569039942
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 385.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (61.5%)
Info: cfl dt = 0.003961660569039956                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8909e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.43645764702192 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23373797357335557, dt = 0.003961660569039956
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 429.07 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.4%)
Info: cfl dt = 0.003961660569039979                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9154e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.96868810880278 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23769963414239553, dt = 0.003961660569039979
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 391.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.2%)
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    | 4.8923e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.46715464966954 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24166129471143552, dt = 0.0039616605690400136
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 445.95 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.6%)
Info: cfl dt = 0.0039616605690400665                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8992e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.61588105231672 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24562295528047554, dt = 0.0039616605690400665
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 409.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.8%)
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    | 4.9149e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.95841652211026 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2495846158495156, dt = 0.003961660569040146
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 425.25 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.8%)
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.9496e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.71290092242569 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25354627641855576, dt = 0.003961660569040265
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 453.76 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.5%)
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.7907e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.25633882582248 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.257507936987596, dt = 0.003961660569040438
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 381.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.6%)
Info: cfl dt = 0.003961660569040688                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8256e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.01591870257363 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26146959755663646, dt = 0.003961660569040688
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 426.88 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (64.7%)
Info: cfl dt = 0.0039616605690410474                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9509e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.74146629008172 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26543125812567714, dt = 0.0039616605690410474
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 1163.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 429.46 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.0%)
Info: cfl dt = 0.003961660569041555                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6807e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.86111913208144 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2693929186947182, dt = 0.003961660569041555
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 387.53 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.4%)
Info: cfl dt = 0.003961660569042265                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8225e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.9481205331505 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2733545792637598, dt = 0.003961660569042265
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1183.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 404.95 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.2%)
Info: cfl dt = 0.00396166056904325                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7516e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.40391800058244 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27731623983280207, dt = 0.00396166056904325
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 413.34 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.5%)
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.7829e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.08608158844581 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2812779004018453, dt = 0.003961660569044601
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 418.20 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.2%)
Info: cfl dt = 0.003961660569046438                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8038e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.54153896905525 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2852395609708899, dt = 0.003961660569046438
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 18.52 us   (4.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 390.30 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.0%)
Info: cfl dt = 0.003961660569048913                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6443e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.06967661939125 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2892012215399364, dt = 0.003961660569048913
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 389.74 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 5.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.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    | 3.7163e+05 | 65536 |      2 | 1.763e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.87412032431857 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2931628821089853, dt = 0.00396166056905222
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 403.47 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (64.9%)
Info: cfl dt = 0.0039616605690566045                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5623e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.28548970121692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2971245426780375, dt = 0.0039616605690566045
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 418.97 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.2%)
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.6694e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.6161129901935 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3010862032470941, dt = 0.003961660569062371
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 419.90 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.1%)
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.8291e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.0907253978032 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3050478638161565, dt = 0.0039616605690698985
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 384.98 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.9%)
Info: cfl dt = 0.003961660569079656                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7609e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.6060876294376 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3090095243852264, dt = 0.003961660569079656
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.9%)
   patch tree reduce : 1663.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.1%)
   LB compute        : 576.55 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.0%)
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.6918e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.10289730401303 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31297118495430604, dt = 0.003961660569092218
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (0.6%)
   patch tree reduce : 1774.00 ns (0.2%)
   gen split merge   : 1051.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.1%)
   LB compute        : 975.90 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.3%)
Info: cfl dt = 0.0039616605691082845                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4863e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.63117963196045 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31693284552339823, dt = 0.0039616605691082845
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 389.65 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.7%)
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.8078e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.62828999542357 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3208945060925065, dt = 0.003961660569128702
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 411.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.8%)
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.8997e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.62790132792932 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32485616666163525, dt = 0.003961660569154493
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 434.40 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.7%)
Info: cfl dt = 0.003961660569186882                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7702e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.81011022031888 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3288178272307897, dt = 0.003961660569186882
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 448.17 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.8%)
Info: cfl dt = 0.003961660569227325                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0520e+05 | 65536 |      2 | 1.297e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.94134332056959 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3327794877999766, dt = 0.003961660569227325
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 398.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.5%)
Info: cfl dt = 0.0039616605692775544                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9163e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.98807264357559 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33674114836920394, dt = 0.0039616605692775544
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1964.00 ns (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 387.71 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.8%)
Info: cfl dt = 0.003961660569339608                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7982e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.4191199375745 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3407028089384815, dt = 0.003961660569339608
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 422.16 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (66.4%)
Info: cfl dt = 0.003961660569415887                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2313e+05 | 65536 |      2 | 1.549e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.08267434131885 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3446644695078211, dt = 0.003961660569415887
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 388.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.8%)
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.6844e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.94228623789165 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.348626130077237, dt = 0.003961660569509195
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 412.74 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.2%)
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.6975e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.22807332028542 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35258779064674617, dt = 0.0039616605696227965
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 406.05 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.4%)
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.7772e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.96059686596783 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35654945121636894, dt = 0.003961660569760479
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 387.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.0%)
Info: cfl dt = 0.003961660569926615                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7749e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.91165053242652 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36051111178612943, dt = 0.003961660569926615
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 455.81 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.5%)
Info: cfl dt = 0.0039616605701262375                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7767e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.95138126019177 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3644727723560561, dt = 0.0039616605701262375
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 383.38 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.8%)
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.7809e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.04112147728914 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36843443292618233, dt = 0.0039616605703651124
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 445.31 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.7%)
Info: cfl dt = 0.003961660570649823                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7607e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.60311404412839 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37239609349654745, dt = 0.003961660570649823
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 433.92 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (68.3%)
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.7537e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.45005787967371 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3763577540671973, dt = 0.003961660570987867
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.3%)
   LB compute        : 422.02 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.3%)
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.9024e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.68711605113737 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38031941463818514, dt = 0.003961660571387742
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 397.90 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.2%)
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    | 5.0033e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.88237767991093 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3842810752095729, dt = 0.003961660571859057
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 381.24 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.4%)
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.8430e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.3941519272162 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3882427357814319, dt = 0.0039616605724126395
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 419.23 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (73.0%)
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.8634e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.83659172201114 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3922043963538446, dt = 0.003961660573060655
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 399.45 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.5%)
Info: cfl dt = 0.003961660573816728                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8658e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.88874218902909 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3961660569269052, dt = 0.003961660573816728
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.2%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 433.17 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.0%)
Info: cfl dt = 0.0039616605746960794                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9272e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.22680344107461 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40012771750072196, dt = 0.0039616605746960794
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 420.73 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.5%)
Info: cfl dt = 0.003961660575715658                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8606e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.77724869471575 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40408937807541806, dt = 0.003961660575715658
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 381.19 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.0%)
Info: cfl dt = 0.003961660576894292                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6759e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.75734006800506 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40805103865113374, dt = 0.003961660576894292
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 393.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.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.8745e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.07897483088702 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.412012699228028, dt = 0.003961660578252845
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1793.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 370.48 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.5%)
Info: cfl dt = 0.0039616605798143655                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8585e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.73106928118092 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4159743598062809, dt = 0.0039616605798143655
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 504.94 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.6%)
Info: cfl dt = 0.003961660581604271                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0330e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.52894186417788 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41993602038609523, dt = 0.003961660581604271
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 380.68 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.3%)
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.8461e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.46102762616108 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42389768096769953, dt = 0.0039616605836505095
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.1%)
   patch tree reduce : 1572.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 496.99 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.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.9208e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.08655006364974 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42785934155135, dt = 0.003961660585983746
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.4%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 406.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.7%)
Info: cfl dt = 0.003961660588637555                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8306e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.12404209727904 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43182100213733376, dt = 0.003961660588637555
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 431.01 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.5%)
Info: cfl dt = 0.003961660591648609                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9456e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.6270094544775 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4357826627259713, dt = 0.003961660591648609
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 396.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.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    | 4.9140e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.93952766589501 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4397443233176199, dt = 0.003961660595056887
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 411.97 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.2%)
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.9361e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.41875361385381 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4437059839126768, dt = 0.003961660598905876
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1924.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 414.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.4%)
Info: cfl dt = 0.00396166060324279                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9163e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.98771148051958 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4476676445115827, dt = 0.00396166060324279
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 439.74 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (65.7%)
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.9503e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.72932152770171 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45162930511482546, dt = 0.003961660608118787
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 369.54 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (62.4%)
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    | 5.0882e+05 | 65536 |      2 | 1.288e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.73021345208801 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4555909657229443, dt = 0.0039616606135891965
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.4%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 424.60 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.8%)
Info: cfl dt = 0.003961660619713745                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1221e+05 | 65536 |      2 | 1.279e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.46725916183689 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4595526263365335, dt = 0.003961660619713745
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 411.22 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.4%)
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.8927e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.47499161248344 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46351428695624725, dt = 0.0039616606265567966
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 439.88 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.8%)
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    | 5.0814e+05 | 65536 |      2 | 1.290e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.5818275028207 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46747594758280403, dt = 0.003961660634187588
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 390.17 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.5%)
Info: cfl dt = 0.003961660642680472                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0199e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.24275112941656 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4714376082169916, dt = 0.003961660642680472
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1273.00 ns (0.3%)
   LB compute        : 457.27 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.2%)
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.1963e+05 | 65536 |      2 | 1.562e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.31936535704068 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4753992688596721, dt = 0.003961660652115165
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 388.93 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.6%)
Info: cfl dt = 0.003961660662577002                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7164e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.63825587367846 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47936092951178727, dt = 0.003961660662577002
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.4%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 422.25 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.3%)
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.5373e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.74146866932469 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4833225901743643, dt = 0.003961660674157178
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 374.37 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.8%)
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.9000e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.63335163393681 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48728425084852145, dt = 0.003961660686953015
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 403.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.3%)
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.7484e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.33554913403637 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4912459115354745, dt = 0.003961660701068213
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 398.87 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (69.0%)
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.8876e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.36526061389273 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4952075722365427, dt = 0.00396166071661311
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 385.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.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.7874e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.18439233209314 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49916923295315585, dt = 0.0039616607337049446
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 381.38 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (65.7%)
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.8752e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.09485378663193 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5031308936868608, dt = 0.003961660752468113
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 422.92 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.4%)
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.7802e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.02768950243583 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5070925544393289, dt = 0.00396166077303443
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.1%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 467.08 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.2%)
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.3295e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.21987045405179 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5110542152123633, dt = 0.003961660795543396
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 397.26 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.8%)
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.8757e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.10436268542716 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150158760079067, dt = 0.003961660820142447
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 388.38 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.1%)
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.6703e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.636034370966 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5189775368280491, dt = 0.003961660846987223
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 446.93 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.2%)
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.8438e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.41182260852324 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5229391976750364, dt = 0.00396166087624182
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 418.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.0%)
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.8607e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.77972647712888 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5269008585512782, dt = 0.003961660908079047
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 383.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.0%)
Info: cfl dt = 0.003961660942680681                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8148e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.77907033547079 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5308625194593573, dt = 0.003961660942680681
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 405.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.1%)
Info: cfl dt = 0.003961660980237712                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7873e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.18196594890176 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5348241804020379, dt = 0.003961660980237712
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 412.34 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.0%)
Info: cfl dt = 0.003961661020950596                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8556e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.66693762243051 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5387858413822757, dt = 0.003961661020950596
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 414.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.8%)
Info: cfl dt = 0.003961661065029497                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8661e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.89729193554251 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5427475024032263, dt = 0.003961661065029497
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 383.68 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.9%)
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.7001e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.28305858897052 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5467091634682558, dt = 0.003961661112694525
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 418.48 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.9%)
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.8875e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.36159658228053 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5506708245809503, dt = 0.00396166116417597
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 391.39 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (62.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.8384e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.29327722335358 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5546324857451262, dt = 0.0039616612197145365
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 420.46 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.6%)
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.8912e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.44225578402042 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5585941469648408, dt = 0.003961661279561565
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 383.42 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.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.7562e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.50383759340139 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5625558082444023, dt = 0.003961661343979254
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 410.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
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.7644e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.68209504883319 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5665174695883816, dt = 0.003961661413240873
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 382.20 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.7%)
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.8628e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.82353178979722 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5704791310016224, dt = 0.00396166148763097
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 419.35 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.1%)
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.8215e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.92610193644819 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5744407924892534, dt = 0.003961661567445573
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 411.51 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.0%)
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.8112e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.70132105827861 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.578402454056699, dt = 0.003961661652992386
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1954.00 ns (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        : 394.37 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.2%)
Info: cfl dt = 0.003961661744590975                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8790e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.1772023274783 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5823641157096914, dt = 0.003961661744590975
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 413.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.2%)
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.9894e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.57895130484175 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5863257774542824, dt = 0.00396166184257295
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1073.00 ns (0.2%)
   LB compute        : 425.29 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.6%)
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.7629e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.65140486606813 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5902874392968553, dt = 0.003961661947282137
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.5%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 380.30 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.7%)
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    | 4.8420e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.37283757653721 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5942491012441374, dt = 0.003961662059074746
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 411.83 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.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.7853e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.13810809233547 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5982107633032122, dt = 0.003961662178319524
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (0.6%)
   patch tree reduce : 2.14 us    (0.2%)
   gen split merge   : 972.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.1%)
   LB compute        : 913.60 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (69.4%)
Info: cfl dt = 0.00396166230539791                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8181e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.85206334126269 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6021724254815317, dt = 0.00396166230539791
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 419.93 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.1%)
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.7248e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.82194051784188 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6061340877869297, dt = 0.00396166244070417
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 409.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.4%)
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.7353e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.04973856455037 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6100957502276338, dt = 0.003961662584645534
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 395.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.7%)
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.6558e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.31967560452658 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6140574128122794, dt = 0.003961662737642322
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.0%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 524.90 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (65.0%)
Info: cfl dt = 0.003961662900128054                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7310e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.95611434253264 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6180190755499217, dt = 0.003961662900128054
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.4%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 398.70 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.0%)
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    | 4.6205e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.55090371399304 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6219807384500498, dt = 0.0039616630725495625
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 408.37 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.1%)
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    | 4.7975e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.40324535519463 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6259424015225993, dt = 0.003961663255367088
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 420.06 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (70.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    | 4.8596e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.7538572871861 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6299040647779663, dt = 0.0039616634490543656
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1233.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 386.24 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.5%)
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.6962e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.19838870656092 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6338657282270207, dt = 0.00396166365409871
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 413.75 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.3%)
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.6478e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.14674019350937 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6378273918811194, dt = 0.0039616638710010844
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 404.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (68.4%)
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.7670e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.73986503903856 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6417890557521204, dt = 0.003961664100276162
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 401.56 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.6%)
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.9200e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.06886379189994 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6457507198523966, dt = 0.003961664342452378
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 424.92 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.0%)
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.9409e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.52383376890408 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.649712384194849, dt = 0.003961664598071978
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1652.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 388.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.7%)
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.8141e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.7651181503827 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.653674048792921, dt = 0.003961664867691047
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 393.02 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.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.8685e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.94898804026722 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.657635713660612, dt = 0.003961665151879538
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 416.33 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.1%)
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.8760e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.1111626885208 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6615973788124916, dt = 0.003961665451221288
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 420.61 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (63.5%)
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.7277e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.88504800107381 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6655590442637129, dt = 0.003961665766314029
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1624.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 386.83 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.3%)
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.7383e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.11625206660398 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.669520710030027, dt = 0.003961666097769379
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 412.98 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.2%)
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.8652e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.87729737023878 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734823761277964, dt = 0.00396166644621284
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 416.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.7%)
Info: cfl dt = 0.0039616668122837775                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8297e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.10347564778218 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6774440425740093, dt = 0.0039616668122837775
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.1%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 453.44 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.4%)
Info: cfl dt = 0.003961667196635386                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9668e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.08704009245858 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6814057093862931, dt = 0.003961667196635386
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 395.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.8%)
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.9489e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.69798390176928 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6853673765829285, dt = 0.003961667599934664
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 447.89 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.7%)
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    | 3.2549e+05 | 65536 |      2 | 2.013e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.83285094427359 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6893290441828631, dt = 0.003961668022862359
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (0.8%)
   patch tree reduce : 1993.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.1%)
   LB compute        : 685.28 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.7%)
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.3886e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.50419021514233 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6932907122057255, dt = 0.003961668466112924
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 388.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.3%)
Info: cfl dt = 0.003961668930394449                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6514e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.22359036069753 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6972523806718384, dt = 0.003961668930394449
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 403.73 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.4%)
Info: cfl dt = 0.003961669416428595                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5579e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.18936870161875 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7012140496022328, dt = 0.003961669416428595
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.0%)
   patch tree reduce : 1843.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 517.78 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.3%)
Info: cfl dt = 0.003961669924950518                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1943e+05 | 65536 |      2 | 1.562e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.27727578175771 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7051757190186614, dt = 0.003961669924950518
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 398.78 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.4%)
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    | 4.8174e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.83600191646305 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7091373889436119, dt = 0.003961670456708782
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 461.21 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.8%)
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    | 4.7815e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.05516301789666 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7130990594003207, dt = 0.003961671012465266
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 454.16 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (63.7%)
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    | 4.8467e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.47526315945721 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.717060730412786, dt = 0.003961671592995069
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 385.46 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (65.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    | 4.7528e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.42988755964124 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.721022402005781, dt = 0.0039616721990863935
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 386.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.0%)
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    | 4.8179e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.84667923426579 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7249840742048674, dt = 0.003961672831540442
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.1%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 451.94 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (67.3%)
Info: cfl dt = 0.003961673491171285                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6641e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.5014519022475 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7289457470364079, dt = 0.003961673491171285
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 413.03 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.8%)
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.6773e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.78890348286473 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7329074205275792, dt = 0.003961674178805742
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 388.83 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.8%)
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    | 4.8620e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.80689847132669 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.736869094706385, dt = 0.00396167489528324
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 395.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.5%)
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    | 4.6175e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.48598083635616 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7408307696016682, dt = 0.003961675641455678
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 419.23 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (63.0%)
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    | 4.8946e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.5158683805653 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7447924452431238, dt = 0.003961676418187273
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 378.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.2%)
Info: cfl dt = 0.003961677226354413                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7535e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.44542561837562 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7487541216613111, dt = 0.003961677226354413
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 406.91 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (65.9%)
Info: cfl dt = 0.003961678066845494                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7623e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.63874439965414 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7527157988876655, dt = 0.003961678066845494
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.1%)
   patch tree reduce : 1562.00 ns (0.3%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 477.17 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.9%)
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.7753e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.92100761673345 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7566774769545109, dt = 0.003961678940560756
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 392.95 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.6%)
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.6964e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.20481947202538 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7606391558950717, dt = 0.003961679848412113
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 380.13 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.0%)
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.7489e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.34550993501679 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7646008357434838, dt = 0.00396168079132298
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1834.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 387.54 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.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.8248e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.9987961753712 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7685625165348068, dt = 0.003961681770228084
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1253.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 385.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (63.6%)
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.8756e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.10269921590093 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7725241983050348, dt = 0.003961682786073291
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1243.00 ns (0.3%)
   LB compute        : 380.60 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.3%)
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.8317e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.14922344358565 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7764858810911082, dt = 0.003961683839815404
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1993.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 432.15 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.0%)
Info: cfl dt = 0.00396168493242198                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7721e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.85095030879143 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7804475649309236, dt = 0.00396168493242198
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 424.67 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.9%)
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.8333e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.18423471206617 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7844092498633456, dt = 0.0039616860648711205
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 413.61 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.3%)
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.6498e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.19063756292896 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7883709359282167, dt = 0.003961687238151275
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1013.00 ns (0.2%)
   LB compute        : 401.04 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.7%)
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.5878e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.8402470351065 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.792332623166368, dt = 0.003961688453261034
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 398.44 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.5%)
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.4579e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.01321497291714 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.796294311619629, dt = 0.003961689711208916
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 446.25 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.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.6337e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.83961936009948 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.800256001330838, dt = 0.003961691013013162
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 387.70 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.5%)
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.7739e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.89095417542103 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8042176923438511, dt = 0.003961692359701507
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 459.29 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.9%)
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.6943e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.15821470691996 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8081793847035526, dt = 0.003961693752310966
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 461.14 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.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.5931e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.95512288382447 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8121410784558635, dt = 0.0039616951918876155
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.1%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 1111.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 477.12 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.5%)
Info: cfl dt = 0.003961696679486361                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5720e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.49659002202343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8161027736477511, dt = 0.003961696679486361
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.24 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 431.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.4%)
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.8672e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.92209532838304 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8200644703272374, dt = 0.003961698216170712
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.2%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 387.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.7%)
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.6161e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.45571736157831 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8240261685434082, dt = 0.003961699803012554
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 403.24 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (69.5%)
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.6630e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.47665939557496 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8279878683464207, dt = 0.003961701441091913
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1193.00 ns (0.3%)
   LB compute        : 403.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.4%)
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.8057e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.5825627019345 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8319495697875126, dt = 0.003961703131496722
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 373.15 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (69.5%)
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.9546e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.824118974891 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8359112729190092, dt = 0.003961704875322589
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 381.95 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (67.1%)
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.7242e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.80886842257155 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8398729777943318, dt = 0.003961706673672552
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1804.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 377.47 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.5%)
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.8532e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.61716521548963 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8438346844680044, dt = 0.003961708527656848
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 405.23 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (69.5%)
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.8082e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.63749166879661 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8477963929956612, dt = 0.00396171043839267
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 389.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.3%)
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    | 5.0691e+05 | 65536 |      2 | 1.293e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.31553637094925 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8517581034340539, dt = 0.003961712407003921
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 387.34 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.3%)
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    | 5.0877e+05 | 65536 |      2 | 1.288e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.7196831799608 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8557198158410578, dt = 0.0039617144346209806
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 396.14 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.5%)
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    | 5.0156e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.15134243232859 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8596815302756788, dt = 0.003961716522380456
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 410.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.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.5555e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.13866310803738 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8636432467980593, dt = 0.003961718671424941
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 399.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.2%)
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.8433e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.40080170017927 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8676049654694842, dt = 0.003961720882902772
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.3%)
   LB compute        : 399.35 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.6%)
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.7618e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.62721140708823 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.871566686352387, dt = 0.003961723157967783
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 398.48 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.8%)
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.7695e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.79623281292601 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8755284095103548, dt = 0.003961725497779062
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.5%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 378.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (63.0%)
Info: cfl dt = 0.0039617279035007065                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7963e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.37896093322732 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8794901350081339, dt = 0.0039617279035007065
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1292.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 378.67 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (54.4%)
Info: cfl dt = 0.0039617303763015786                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8164e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.81629726831832 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8834518629116346, dt = 0.0039617303763015786
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 407.94 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.4%)
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.6102e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.32930623390348 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8874135932879361, dt = 0.003961732917355063
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1654.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 385.00 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.8%)
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.6378e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.92988185667899 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913753262052911, dt = 0.003961735527838824
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 400.24 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.2%)
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.6741e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.71991536710487 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.89533706173313, dt = 0.003961738208934556
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 428.04 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.0%)
Info: cfl dt = 0.00396174096182775                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7074e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.44499987077451 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8992987999420645, dt = 0.00396174096182775
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 411.51 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.9%)
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.6968e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.21364914188085 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9032605409038923, dt = 0.003961743787707447
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 393.24 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.6%)
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.8778e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.15358330549398 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9072222846915997, dt = 0.003961746687765999
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 371.56 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.7%)
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.8834e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.2760363463379 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9111840313793658, dt = 0.003961749663198826
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 400.61 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (62.5%)
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.8332e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.18342753303703 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9151457810425646, dt = 0.003961752715204182
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1733.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 501.51 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (75.8%)
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.8223e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.94622380558864 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9191075337577688, dt = 0.003961755844982917
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 399.11 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.8%)
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.8217e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.93351867348963 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9230692896027517, dt = 0.003961759053738236
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 411.50 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.7%)
Info: cfl dt = 0.003961762342675468                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8237e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.97648008643384 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9270310486564899, dt = 0.003961762342675468
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 374.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.6%)
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.8877e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.3697943155413 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9309928109991653, dt = 0.003961765713001833
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 402.80 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.2%)
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    | 5.0261e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.38202737170094 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9349545767121672, dt = 0.0039617691659262115
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 380.19 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.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.9185e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.03992576996738 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9389163458780934, dt = 0.00396177270265891
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 411.97 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (69.9%)
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.8681e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.94287466455532 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9428781185807523, dt = 0.003961776324411435
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 410.31 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.3%)
Info: cfl dt = 0.00396178003239627                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7289e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.91259080768191 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9468398949051637, dt = 0.00396178003239627
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 408.86 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.0%)
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.8522e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.59777947319331 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.95080167493756, dt = 0.003961783827826645
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1844.00 ns (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        : 436.36 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.4%)
Info: cfl dt = 0.003961787711916316                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9843e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.47250286772768 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9547634587653866, dt = 0.003961787711916316
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 390.53 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (64.8%)
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.9456e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.63055562488941 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.958725246477303, dt = 0.00396179168587935
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 401.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.9%)
Info: cfl dt = 0.003961795750929895                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9053e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.7534450714096 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9626870381631824, dt = 0.003961795750929895
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 414.44 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (70.1%)
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.8694e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.9715504958093 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9666488339141123, dt = 0.003961799908281978
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 398.01 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.8%)
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.8238e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.98027711148774 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9706106338223942, dt = 0.003961804159149277
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 415.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.4%)
Info: cfl dt = 0.003961808504744921                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8382e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.29287614495125 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9745724379815435, dt = 0.003961808504744921
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1123.00 ns (0.3%)
   LB compute        : 386.80 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.7%)
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.7963e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.38195690281496 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9785342464862884, dt = 0.003961812946281273
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1964.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 428.76 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (74.0%)
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.7898e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.24050235118324 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9824960594325697, dt = 0.003961817484969728
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 469.81 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.0%)
Info: cfl dt = 0.003961822122020504                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1070e+05 | 65536 |      2 | 1.283e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.14395525823464 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9864578769175394, dt = 0.003961822122020504
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 414.93 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.7%)
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.9702e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.16675853078792 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9904196990395598, dt = 0.0039618268586424435
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 399.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.8%)
Info: cfl dt = 0.003961831696042813                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9471e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.66461329704154 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9943815258982023, dt = 0.003961831696042813
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 379.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.1%)
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.8368e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.26283160952731 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9983433575942451, dt = 0.003961836635427104
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 382.78 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.2%)
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.8670e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.92040229086875 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0023051942296721, dt = 0.003961841677998846
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 391.84 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (63.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.7559e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.50360511686276 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.006267035907671, dt = 0.003961846824959406
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 375.82 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.9%)
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.9507e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.7416530198767 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0102288827326305, dt = 0.003961852077507803
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.65 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.4%)
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.8387e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.30414247218552 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0141907348101382, dt = 0.003961857436840524
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 403.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.0%)
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.7912e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.27152779775183 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0181525922469787, dt = 0.003961862904151339
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.1%)
   patch tree reduce : 1693.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 466.05 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.2%)
Info: cfl dt = 0.003961868480631118                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7638e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.67433878096138 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.02211445515113, dt = 0.003961868480631118
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1894.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 435.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (66.1%)
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.8441e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.42378116409247 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0260763236317612, dt = 0.003961874167467658
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 378.21 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.2%)
Info: cfl dt = 0.003961879965845504                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8843e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.29767948104383 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0300381977992288, dt = 0.003961879965845504
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1614.00 ns (0.3%)
   gen split merge   : 1303.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 452.57 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.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.8755e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.10695272115358 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0340000777650742, dt = 0.003961885876945777
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.2%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 415.37 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.2%)
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.8332e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.18576245450545 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0379619636420199, dt = 0.00396189190194601
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 432.51 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.8%)
Info: cfl dt = 0.003961898042019972                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9596e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.93692497316796 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0419238555439658, dt = 0.003961898042019972
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.1%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 413.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.2%)
Info: cfl dt = 0.003961904298337512                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8214e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.92946069717323 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0458857535859858, dt = 0.003961904298337512
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.67 us   (5.0%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 399.76 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.0%)
Info: cfl dt = 0.003961910672064397                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8018e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.50411185691169 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0498476578843232, dt = 0.003961910672064397
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 405.79 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.0%)
Info: cfl dt = 0.003961917164362151                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8829e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.26768877513013 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0538095685563875, dt = 0.003961917164362151
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 471.50 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.3%)
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.8321e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.16317581605556 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0577714857207496, dt = 0.003961923776387904
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 404.34 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.3%)
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.8448e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.44058043731812 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0617334094971376, dt = 0.003961930509294236
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 408.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.4%)
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.8774e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.14899745375655 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0656953400064317, dt = 0.003961937364229031
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1943.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 430.64 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (63.5%)
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.8674e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.93150190234402 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0696572773706607, dt = 0.003961944342335331
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.3%)
   patch tree reduce : 1652.00 ns (0.1%)
   gen split merge   : 1192.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 1714.21 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.4%)
Info: cfl dt = 0.00396195144475119                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7971e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.40154932113403 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.073619221712996, dt = 0.00396195144475119
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (0.8%)
   patch tree reduce : 1563.00 ns (0.2%)
   gen split merge   : 1302.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.1%)
   LB compute        : 720.67 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.7%)
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.9103e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.86635858448594 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0775811731577472, dt = 0.003961958672609534
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 388.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.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.9771e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.32059930819604 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0815431318303568, dt = 0.003961966027038027
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.84 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.5%)
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.9913e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.6297632028533 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0855050978573948, dt = 0.003961973509158932
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 439.42 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.3%)
Info: cfl dt = 0.003961981120088983                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7959e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.37735673694257 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0894670713665537, dt = 0.003961981120088983
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 458.52 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.0%)
Info: cfl dt = 0.0039619888609392535                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0819e+05 | 65536 |      2 | 1.290e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.6019054781768 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0934290524866428, dt = 0.0039619888609392535
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 391.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.9%)
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    | 5.0861e+05 | 65536 |      2 | 1.289e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.6942242762255 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.097391041347582, dt = 0.003961996732815032
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 397.78 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.1%)
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.9081e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.82003592195973 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.101353038080397, dt = 0.003962004736815698
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 406.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.7%)
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.9262e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.21406922846471 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1053150428172127, dt = 0.0039620128740346025
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 396.22 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (63.6%)
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.9818e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.42339482802635 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1092770556912472, dt = 0.003962021145558951
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 362.31 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.3%)
Info: cfl dt = 0.003962029552469688                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9163e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.99959867121886 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1132390768368061, dt = 0.003962029552469688
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 420.23 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.8%)
Info: cfl dt = 0.003962038095841385                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9290e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.2743131627476 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1172011063892757, dt = 0.003962038095841385
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1983.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 423.89 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.1%)
Info: cfl dt = 0.003962046776742136                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0440e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.77836542860885 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1211631444851171, dt = 0.003962046776742136
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 385.43 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.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.9531e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.8010839557894 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1251251912618592, dt = 0.003962055596233445
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 395.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.5%)
Info: cfl dt = 0.003962064555370124                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9764e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.30772455962867 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1290872468580926, dt = 0.003962064555370124
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 407.26 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.9%)
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.9681e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.12715637476339 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1330493114134628, dt = 0.0039620736552002
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 377.70 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.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.9518e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.77275590801601 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.137011385068663, dt = 0.003962082896764802
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 421.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.1%)
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.9221e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.1256916754341 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1409734679654278, dt = 0.003962092281098084
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 427.12 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.8%)
Info: cfl dt = 0.0039621018092271185                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8104e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.69648969763911 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1449355602465259, dt = 0.0039621018092271185
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.1%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 7.99 us    (1.7%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 456.28 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.0%)
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.9674e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.1131215451686 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.148897662055753, dt = 0.0039621114821718146
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.2%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 432.95 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.9%)
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.9932e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.67441113221666 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1528597735379247, dt = 0.003962121300944826
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 394.27 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.5%)
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.9712e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.1961455491666 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1568218948388695, dt = 0.00396213126655147
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 397.37 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.2%)
Info: cfl dt = 0.0039621413799896445                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8024e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.52144059253594 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.160784026105421, dt = 0.0039621413799896445
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 379.12 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.7%)
Info: cfl dt = 0.003962151642249748                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8834e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.28526196135391 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1647461674854107, dt = 0.003962151642249748
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 370.18 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.9%)
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.8905e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.44042622761725 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1687083191276604, dt = 0.003962162054314604
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 379.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (62.4%)
Info: cfl dt = 0.003962172617159386                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9318e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.34068678021102 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.172670481181975, dt = 0.003962172617159386
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 409.03 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
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.9120e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.90891649345059 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1766326537991345, dt = 0.003962183331751545
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 386.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.9%)
Info: cfl dt = 0.003962194199050744                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8723e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.0453174384847 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.180594837130886, dt = 0.003962194199050744
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 412.51 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.3%)
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.9041e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.7382556114546 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1845570313299367, dt = 0.003962205220008788
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (0.5%)
   patch tree reduce : 1663.00 ns (0.2%)
   gen split merge   : 951.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.1%)
   LB compute        : 1030.99 us (98.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.9%)
Info: cfl dt = 0.003962216395569559                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8493e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.54498693480522 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1885192365499455, dt = 0.003962216395569559
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 434.78 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.5%)
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.8601e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.7814106996038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.192481452945515, dt = 0.0039622277266689555
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 393.48 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.4%)
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.7235e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.80748676181199 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1964436806721839, dt = 0.003962239214234835
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 404.22 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.5%)
Info: cfl dt = 0.003962250859186951                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8411e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.36810964841393 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2004059198864188, dt = 0.003962250859186951
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 430.17 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.8%)
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.8304e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.13565610110851 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2043681707456058, dt = 0.003962262662436908
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.3%)
   LB compute        : 385.85 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.2%)
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.9321e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.34878132134665 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2083304334080427, dt = 0.003962274624888095
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 423.69 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.3%)
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.9309e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.3230913486735 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2122927080329309, dt = 0.0039622867474356505
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.6%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 406.54 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.7%)
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.8446e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.44558038647408 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2162549947803665, dt = 0.0039622990309663994
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 372.61 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 20.98 us   (94.5%)
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.9384e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.48718352068829 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.220217293811333, dt = 0.0039623114763588235
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 379.75 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.7%)
Info: cfl dt = 0.003962324084482998                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0049e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.93389578908163 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2241796052876917, dt = 0.003962324084482998
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 395.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.1%)
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.9402e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.52608037160427 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2281419293721747, dt = 0.003962336856200572
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 374.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (63.4%)
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.4255e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.32494489599395 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2321042662283752, dt = 0.00396234979236471
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 399.28 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.6%)
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.9531e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.80921690691389 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2360666160207399, dt = 0.0039623628938200645
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 392.55 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.5%)
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.9712e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.20302358118062 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.24002897891456, dt = 0.003962376161402739
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 397.11 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.4%)
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.9234e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.16232873211713 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2439913550759627, dt = 0.003962389595940256
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.3%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 427.46 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.9%)
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.9799e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.39231522880922 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.247953744671903, dt = 0.00396240319825152
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 432.69 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.9%)
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.9664e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.09834880043005 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2519161478701544, dt = 0.003962416969146797
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 416.63 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.4%)
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.9351e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.41778042510086 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2558785648393012, dt = 0.003962430909427678
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 371.27 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (64.0%)
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.8794e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.20733683500505 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2598409957487289, dt = 0.003962445019887062
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 378.04 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.5%)
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.8088e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.67030540080897 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2638034407686158, dt = 0.003962459301309124
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 399.25 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.5%)
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.9082e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.83304256981998 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.267765900069925, dt = 0.0039624737544693015
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (0.4%)
   patch tree reduce : 1724.00 ns (0.1%)
   gen split merge   : 941.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.1%)
   LB compute        : 1656.95 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.2%)
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.8918e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.47815533804605 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2717283738243943, dt = 0.003962488380134269
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 396.55 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.4%)
Info: cfl dt = 0.003962503179061921                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9206e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.1055000865321 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2756908622045287, dt = 0.003962503179061921
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 389.21 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.0%)
Info: cfl dt = 0.003962518152001356                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8613e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.81398415443284 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2796533653835906, dt = 0.003962518152001356
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1993.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 384.34 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.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    | 4.9294e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.29725432138281 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.283615883535592, dt = 0.003962533299692865
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 444.05 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.5%)
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.6678e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.60331300864621 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2875784168352848, dt = 0.003962548622867913
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.57 us    (1.4%)
   patch tree reduce : 2.01 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 512.06 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 5.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (74.7%)
Info: cfl dt = 0.003962564122249132                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6909e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.10608185910186 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2915409654581527, dt = 0.003962564122249132
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 435.81 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (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.9204e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.10239756828915 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2955035295804018, dt = 0.0039625797985503065
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1033.00 ns (0.2%)
   LB compute        : 418.16 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.6%)
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    | 5.0076e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.00180915504839 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2994661093789521, dt = 0.003962595652476375
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 383.86 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.1%)
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.7980e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.43813547114793 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3034287050314286, dt = 0.003962611684723411
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 388.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.4%)
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.8528e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.6330207839516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.307391316716152, dt = 0.003962627895978629
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 383.13 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (61.4%)
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.6838e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.953134057348 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3113539446121305, dt = 0.003962644286920375
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.1%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 466.09 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.2%)
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    | 5.0370e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.64300210987535 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3153165888990508, dt = 0.003962660858218128
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 434.04 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.7%)
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.8768e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.15618671250746 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.319279249757269, dt = 0.0039626776105324965
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 410.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.0%)
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.9137e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.95993983517742 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3232419273678016, dt = 0.00396269454451522
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 390.67 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.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.8906e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.45722336577225 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3272046219123168, dt = 0.003962711660809177
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1624.00 ns (0.4%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 420.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.8%)
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.9433e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.60548899819261 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.331167333573126, dt = 0.003962728960048383
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 397.51 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.2%)
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.8984e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.62805458869185 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3351300625331743, dt = 0.0039627464428579956
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.3%)
   gen split merge   : 1162.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 456.56 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.8%)
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.7550e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.50661951534128 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3390928089760323, dt = 0.003962764109854326
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 419.18 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.2%)
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.8666e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.93751676982025 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3430555730858866, dt = 0.0039627819616448404
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 411.65 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.6%)
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.9709e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.20737807520457 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3470183550475314, dt = 0.003962799998828178
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 377.59 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.3%)
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    | 5.0899e+05 | 65536 |      2 | 1.288e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.79762719335851 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3509811550463595, dt = 0.0039628182219941495
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 383.38 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.7%)
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    | 5.0743e+05 | 65536 |      2 | 1.292e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.4601778489739 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3549439732683537, dt = 0.003962836631723762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 400.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.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.9553e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.8700250544604 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3589068099000774, dt = 0.003962855228589221
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 382.76 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.4%)
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.8523e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.62743031758667 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3628696651286667, dt = 0.003962874013153952
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 387.39 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.4%)
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.8877e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.39995750783211 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3668325391418206, dt = 0.00396289298597261
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 415.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.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.9046e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.76788782550149 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.370795432127793, dt = 0.003962912147591101
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 412.40 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.6%)
Info: cfl dt = 0.003962931498546593                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8623e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.84648869094259 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3747583442753841, dt = 0.003962931498546593
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 418.68 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.0%)
Info: cfl dt = 0.003962951039367544                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8308e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.1618876285674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3787212757739307, dt = 0.003962951039367544
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 409.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
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.6079e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.30899064728222 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3826842268132982, dt = 0.003962970770573712
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 397.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (63.1%)
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.7180e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.70640495915863 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.386647197583872, dt = 0.00396299069267618
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (0.3%)
   patch tree reduce : 1543.00 ns (0.1%)
   gen split merge   : 851.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 1611.10 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.7%)
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.8036e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.571371947725 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.390610188276548, dt = 0.003963010806177378
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 400.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.2%)
Info: cfl dt = 0.003963031111571105                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9316e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.35885338034089 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3945731990827255, dt = 0.003963031111571105
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 396.66 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 20.57 us   (4.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.5%)
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.9309e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.3437279072893 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3985362301942965, dt = 0.003963051609342553
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 407.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.4%)
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.8947e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.55667938280051 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.402499281803639, dt = 0.0039630722999683295
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 385.34 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.5%)
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    | 4.9144e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.98645024159352 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4064623541036074, dt = 0.003963093183916485
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 431.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.9%)
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.9651e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.08963793867801 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.410425447287524, dt = 0.003963114261646537
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 364.34 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.4%)
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.9499e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.75915887867733 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4143885615491705, dt = 0.003963135533609502
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 417.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.5%)
Info: cfl dt = 0.0039631570002479155                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9230e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.1741317184603 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.41835169708278, dt = 0.0039631570002479155
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.4%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 410.24 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (64.9%)
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.8123e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.7641863899517 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.422314854083028, dt = 0.003963178661995871
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 437.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.0%)
Info: cfl dt = 0.003963200519279039                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9632e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.05066898065128 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4262780327450237, dt = 0.003963200519279039
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 387.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.3%)
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.8905e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.46810224579063 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4302412332643029, dt = 0.0039632225725147055
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 1303.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 470.85 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 us    (73.6%)
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.8354e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.2707777312448 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4342044558368177, dt = 0.003963244822111799
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 457.65 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (63.4%)
Info: cfl dt = 0.003963267268470924                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8551e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.6999595311724 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4381677006589295, dt = 0.003963267268470924
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 415.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.4%)
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.9134e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.96879797923759 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4421309679274004, dt = 0.003963289911984391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1554.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 415.31 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.9%)
Info: cfl dt = 0.003963312753036255                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9243e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.20606185197681 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4460942578393847, dt = 0.003963312753036255
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.3%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 424.88 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.0%)
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.8419e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.41445692407363 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.450057570592421, dt = 0.003963335792002346
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 378.22 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.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.9052e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.79211142706875 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4540209063844234, dt = 0.003963359029250299
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 439.68 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 25.02 us   (94.2%)
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.8562e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.72675390530351 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4579842654136737, dt = 0.003963382465139601
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 414.97 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (66.1%)
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.9014e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.7103085165779 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4619476478788132, dt = 0.003963406100021618
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 417.49 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.1%)
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.8891e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.44419561892019 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4659110539788347, dt = 0.003963429934239629
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 403.69 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.3%)
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.9240e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.20420679898734 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4698744839130744, dt = 0.003963453968128874
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 410.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.3%)
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    | 5.0215e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.32702365658086 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4738379378812032, dt = 0.003963478202016583
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 386.83 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.7%)
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.8757e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.15381976823228 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4778014160832198, dt = 0.003963502636222012
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.96 us   (5.3%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 391.82 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.2%)
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.9096e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.89188815120654 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4817649187194417, dt = 0.003963527271056495
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.1%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 461.99 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.7%)
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.9211e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.14420660359563 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4857284459904982, dt = 0.003963552106823466
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 388.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.9%)
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.9213e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.14833606658256 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4896919980973218, dt = 0.00396357714381851
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.20 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 407.92 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.9%)
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.9009e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.70483802974348 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4936555752411402, dt = 0.003963602382329404
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.2%)
   patch tree reduce : 1592.00 ns (0.3%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 466.69 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.3%)
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.9134e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.97853969620196 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4976191776234697, dt = 0.0039636278226361475
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 401.50 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.6%)
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    | 5.1052e+05 | 65536 |      2 | 1.284e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.15447698214344 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5015828054461058, dt = 0.003963653465011013
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 397.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.8%)
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.9627e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.05360420792576 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5055464589111167, dt = 0.003963679309718585
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 380.91 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.0%)
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.8755e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.15471939988052 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5095101382208354, dt = 0.003963705357015802
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 395.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.8%)
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.9274e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.28627929652073 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5134738435778512, dt = 0.0039637316071519935
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 439.90 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (63.3%)
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.8023e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.56233832815403 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.517437575185003, dt = 0.003963758060368932
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (0.5%)
   patch tree reduce : 1542.00 ns (0.1%)
   gen split merge   : 1233.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.1%)
   LB compute        : 1171.00 us (98.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.4%)
Info: cfl dt = 0.00396378471690087                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9125e+05 | 65536 |      2 | 1.675e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.18917398231594 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.521401333245372, dt = 0.00396378471690087
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 376.08 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.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.5268e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.56422057947594 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.525365117962273, dt = 0.003963811576974585
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 369.11 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.1%)
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    | 5.0133e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.15867714321125 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5293289295392476, dt = 0.003963838640809422
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 386.47 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.7%)
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.9921e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.6978734390311 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.533292768180057, dt = 0.00396386590861734
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 384.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.6%)
Info: cfl dt = 0.003963893380602954                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0503e+05 | 65536 |      2 | 1.298e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.96518592244209 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5372566340886744, dt = 0.003963893380602954
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 386.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.2%)
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.9097e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.90534693094864 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5412205274692774, dt = 0.003963921056963584
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 398.18 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.9%)
Info: cfl dt = 0.003963948937889289                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9470e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.71820494879762 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.545184448526241, dt = 0.003963948937889289
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 406.41 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (65.1%)
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.9426e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.6233768038818 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5491483974641302, dt = 0.003963977023562928
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 386.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.8%)
Info: cfl dt = 0.003964005314160192                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9281e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.30782676355864 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5531123744876931, dt = 0.003964005314160192
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 409.22 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (65.1%)
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    | 5.0498e+05 | 65536 |      2 | 1.298e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.95999755041204 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5570763798018534, dt = 0.003964033809849659
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.1%)
   patch tree reduce : 1943.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 433.02 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (61.3%)
Info: cfl dt = 0.0039640625107928325                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8757e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.16954656316166 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.561040413611703, dt = 0.0039640625107928325
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 401.81 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.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.8875e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.425794045801 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.565004476122496, dt = 0.003964091417144193
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 401.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.2%)
Info: cfl dt = 0.003964120529051242                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8857e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.38850063416528 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.56896856753964, dt = 0.003964120529051242
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.3%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 381.44 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.9%)
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.9027e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.76002776484624 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5729326880686914, dt = 0.003964149846654549
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.5%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 378.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.4%)
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.9505e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.79983210738578 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5768968379153459, dt = 0.003964179370087799
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 383.48 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.9%)
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    | 5.0366e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.67544627404803 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5808610172854336, dt = 0.003964209099477838
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.5%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 364.91 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (63.2%)
Info: cfl dt = 0.003964239034944721                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0672e+05 | 65536 |      2 | 1.293e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.34407667506923 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5848252263849114, dt = 0.003964239034944721
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 418.27 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (69.7%)
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    | 5.0907e+05 | 65536 |      2 | 1.287e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.85527901130513 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5887894654198562, dt = 0.00396426917660176
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 422.10 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.0%)
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    | 5.0242e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.40922223420901 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.592753734596458, dt = 0.003964299524555568
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 382.10 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.9%)
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.9865e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.58968907471589 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5967180341210134, dt = 0.003964330078906113
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 393.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.7%)
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.8392e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.38143849312664 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6006823641999195, dt = 0.003964360839746756
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 418.32 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (66.6%)
Info: cfl dt = 0.003964391807164308                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9506e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.80783044673758 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6046467250396663, dt = 0.003964391807164308
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 378.32 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.5%)
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.9474e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.73943919829127 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6086111168468307, dt = 0.003964422981239073
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 392.69 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.1%)
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.9321e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.40638245458976 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6125755398280697, dt = 0.003964454362044897
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 367.17 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (63.8%)
Info: cfl dt = 0.0039644859496492145                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9204e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.15374466234707 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6165399941901146, dt = 0.0039644859496492145
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 395.13 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (63.3%)
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    | 5.1304e+05 | 65536 |      2 | 1.277e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.72783343020829 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.620504480139764, dt = 0.003964517744113101
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 402.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.1%)
Info: cfl dt = 0.003964549745491315                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9931e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.73794966872386 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6244689978838769, dt = 0.003964549745491315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 376.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.2%)
Info: cfl dt = 0.003964581953832349                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0201e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.32811365538845 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.628433547629368, dt = 0.003964581953832349
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 393.45 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (66.1%)
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    | 5.1351e+05 | 65536 |      2 | 1.276e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.83345812661177 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6323981295832004, dt = 0.00396461436917848
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 440.69 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (68.6%)
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    | 5.0511e+05 | 65536 |      2 | 1.297e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.00446433923675 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.636362743952379, dt = 0.003964646991565815
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 403.39 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.0%)
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    | 5.0172e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.26741008324166 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6403273909439446, dt = 0.0039646798210243375
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 413.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.5%)
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.9436e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.66420315457161 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.644292070764969, dt = 0.0039647128575779605
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 413.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.0%)
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.9058e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.8415395293682 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.648256783622547, dt = 0.00396474610124457
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 401.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.9%)
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    | 5.0469e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.91573891937507 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6522215297237917, dt = 0.0039647795520360764
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 433.65 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.3%)
Info: cfl dt = 0.003964813209958465                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0238e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.41340763716984 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6561863092758278, dt = 0.003964813209958465
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 408.54 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.9%)
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.9567e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.95462043643414 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6601511224857863, dt = 0.003964847075011834
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 353.97 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.6%)
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.9818e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.50100843196185 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.664115969560798, dt = 0.003964881147190456
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 380.74 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.0%)
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    | 5.0050e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.00811214426668 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6680808507079885, dt = 0.003964915426482819
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.3%)
   patch tree reduce : 2.05 us    (0.4%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 442.03 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.2%)
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.9743e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.34083213012646 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6720457661344714, dt = 0.003964949912871672
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.6%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 363.07 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.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    | 5.0728e+05 | 65536 |      2 | 1.292e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.48713137894 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6760107160473432, dt = 0.0039649846063340806
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.1%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 425.33 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.4%)
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.5681e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.49533616277417 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6799757006536773, dt = 0.003965019506841468
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1763.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 483.68 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.6%)
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.9496e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.80410355675349 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6839407201605188, dt = 0.00396505461435967
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 374.95 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.2%)
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.8559e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.76562157011912 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6879057747748785, dt = 0.003965089928848974
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 469.82 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.4%)
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.9724e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.30358455608541 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6918708647037275, dt = 0.003965125450264176
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 389.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.5%)
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.8213e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.01302690444436 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6958359901539917, dt = 0.003965161178554622
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 400.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.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.8738e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.15826112664912 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6998011513325464, dt = 0.003965197113664259
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1914.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 406.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.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.9605e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.0468203319091 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7037663484462107, dt = 0.0039652332555316794
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 472.70 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.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.9543e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.91226624354337 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7077315817017424, dt = 0.003965269604090176
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.77 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.3%)
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.9646e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.1373756927028 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7116968513058326, dt = 0.003965306159267778
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 407.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.8%)
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.9476e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.76800221857813 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7156621574651003, dt = 0.003965342920987307
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 429.14 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.2%)
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.9352e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.49966340961949 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7196275003860877, dt = 0.003965379889166425
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 398.60 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.6%)
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.9175e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.11606965745688 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.723592880275254, dt = 0.0039654170637176715
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (0.8%)
   patch tree reduce : 1643.00 ns (0.2%)
   gen split merge   : 902.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.1%)
   LB compute        : 720.72 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.0%)
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.9112e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.97890842993502 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7275582973389718, dt = 0.003965454444548522
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 408.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.5%)
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.9177e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.12180196292636 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7315237517835202, dt = 0.00396549203156143
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1933.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 436.66 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.2%)
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    | 5.0160e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.26367284730006 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7354892438150817, dt = 0.003965529824653871
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 438.41 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.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.9323e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.4412445602639 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7394547736397357, dt = 0.003965567823718394
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 429.19 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.4%)
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.9544e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.92371698734928 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7434203414634541, dt = 0.0039656060286426655
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 401.79 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.0%)
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.9336e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.47181511573191 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7473859474920967, dt = 0.003965644439309516
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.54 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.0%)
Info: cfl dt = 0.0039656830555969864                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8979e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.69643523297303 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7513515919314062, dt = 0.0039656830555969864
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 408.71 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.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    | 4.9244e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.27399982571279 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7553172749870032, dt = 0.003965721877378375
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 380.64 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.3%)
Info: cfl dt = 0.0039657609045222805                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8721e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.13610503300336 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7592829968643815, dt = 0.0039657609045222805
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 433.20 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.9%)
Info: cfl dt = 0.00396580013689265                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8875e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.47238686828369 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7632487577689038, dt = 0.00396580013689265
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 396.21 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (67.8%)
Info: cfl dt = 0.003965839574348828                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7970e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.50187398464303 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7672145579057965, dt = 0.003965839574348828
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1652.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 377.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.1%)
Info: cfl dt = 0.003965879216745591                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7022e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.43828469099145 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7711803974801454, dt = 0.003965879216745591
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (0.7%)
   patch tree reduce : 1723.00 ns (0.2%)
   gen split merge   : 921.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.1%)
   LB compute        : 748.74 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.6%)
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.7747e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.01755398702588 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.775146276696891, dt = 0.003965919063933207
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.1%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 1193.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 482.25 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (68.4%)
Info: cfl dt = 0.003965959115757468                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8621e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.92354143153158 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7791121957608242, dt = 0.003965959115757468
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 388.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (65.9%)
Info: cfl dt = 0.003965999372059742                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7833e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.20726664087259 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7830781548765817, dt = 0.003965999372059742
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.4%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 407.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.4%)
Info: cfl dt = 0.003966039832677017                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7975e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.5170188661614 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7870441542486415, dt = 0.003966039832677017
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.1%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 483.56 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.5%)
Info: cfl dt = 0.003966080497441943                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8197e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.00342361319437 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7910101940813186, dt = 0.003966080497441943
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 401.74 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.2%)
Info: cfl dt = 0.003966121366182878                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3856e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.54716327692114 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7949762745787605, dt = 0.003966121366182878
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (0.3%)
   patch tree reduce : 1894.00 ns (0.1%)
   gen split merge   : 942.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.1%)
   LB compute        : 1630.15 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.4%)
Info: cfl dt = 0.0039661624387239336                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5285e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6612578002144 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7989423959449433, dt = 0.0039661624387239336
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 390.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.8%)
Info: cfl dt = 0.003966203714885015                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9867e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.64484866756106 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8029085583836673, dt = 0.003966203714885015
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 432.41 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.8%)
Info: cfl dt = 0.003966245194481867                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9035e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.8334799329056 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8068747620985524, dt = 0.003966245194481867
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 373.67 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.7%)
Info: cfl dt = 0.003966286877326122                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9509e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.86549722503688 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8108410072930343, dt = 0.003966286877326122
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 433.63 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.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    | 4.9430e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.69460570986186 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8148072941703604, dt = 0.0039663287632253335
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1914.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 427.32 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (64.1%)
Info: cfl dt = 0.003966370851983028                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9309e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.43345315073296 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8187736229335856, dt = 0.003966370851983028
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 415.81 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.5%)
Info: cfl dt = 0.0039664131433987445                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7568e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.64026691811588 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8227399937855686, dt = 0.0039664131433987445
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 394.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.4%)
Info: cfl dt = 0.003966455637268077                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9231e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.26610000480383 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8267064069289674, dt = 0.003966455637268077
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.1%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.2%)
   LB compute        : 470.08 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.1%)
Info: cfl dt = 0.0039664983333827205                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6240e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.7496560864756 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8306728625662354, dt = 0.0039664983333827205
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 414.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.0%)
Info: cfl dt = 0.003966541231530505                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8846e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.42917801464601 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.834639360899618, dt = 0.003966541231530505
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 359.92 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (63.2%)
Info: cfl dt = 0.0039665843314954504                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8743e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.20506843206655 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8386059021311485, dt = 0.0039665843314954504
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.1%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 433.48 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (72.7%)
Info: cfl dt = 0.003966627633057796                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9024e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.81988661763967 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.842572486462644, dt = 0.003966627633057796
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1914.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 409.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.6%)
Info: cfl dt = 0.00396667113599405                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8317e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.279313182616 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.846539114095702, dt = 0.00396667113599405
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 393.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.4%)
Info: cfl dt = 0.0039667148400770276                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8729e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.17842873426086 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.850505785231696, dt = 0.0039667148400770276
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 374.14 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.1%)
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    | 4.9165e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.12862356969964 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.854472500071773, dt = 0.003966758745075896
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 401.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.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    | 4.9045e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.86853806300469 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8584392588168488, dt = 0.003966802850756208
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 425.15 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.8%)
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    | 4.6772e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.9170849243225 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.862406061667605, dt = 0.003966847156879954
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 396.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.2%)
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.9196e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.20034318138751 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.866372908824485, dt = 0.003966891663205592
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 416.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.4%)
Info: cfl dt = 0.003966936369488094                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5788e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.77603010228685 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8703398004876906, dt = 0.003966936369488094
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 418.77 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.2%)
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.8141e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.90350609854616 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8743067368571786, dt = 0.003966981275478984
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 432.38 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.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.8258e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.16108673069492 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8782737181326576, dt = 0.00396702638092638
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 483.80 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.1%)
Info: cfl dt = 0.003967071685575031                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8321e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.29824188478152 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.882240744513584, dt = 0.003967071685575031
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 385.84 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (76.3%)
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.8943e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.65450542148449 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8862078161991591, dt = 0.00396711718916636
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.2%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 388.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.4%)
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.9064e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.9194559549608 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8901749333883255, dt = 0.003967162891438498
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.3%)
   LB compute        : 384.92 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.8%)
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.8259e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.16776290477229 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.894142096279764, dt = 0.0039672087921263305
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 415.67 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.7%)
Info: cfl dt = 0.003967254890961529                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8338e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.34168805688284 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8981093050718902, dt = 0.003967254890961529
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 412.36 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (65.7%)
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    | 4.6370e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.05239026211872 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9020765599628517, dt = 0.003967301187672596
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.1%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 443.33 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.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    | 4.7508e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.53489810258817 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9060438611505244, dt = 0.003967347681984896
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1173.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 389.09 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.4%)
Info: cfl dt = 0.003967394373620703                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6977e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.3788301148194 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9100112088325092, dt = 0.003967394373620703
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 406.55 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.3%)
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    | 4.7507e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.53509711079029 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.91397860320613, dt = 0.003967441262299228
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 375.58 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.7%)
Info: cfl dt = 0.003967488347736667                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7431e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.3700753370585 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.917946044468429, dt = 0.003967488347736667
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.2%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 433.08 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.5%)
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    | 4.8215e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.08081661734654 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9219135328161658, dt = 0.0039675356296462305
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.1%)
   patch tree reduce : 1644.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 441.62 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (66.3%)
Info: cfl dt = 0.003967583107738185                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7784e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.14146361537101 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.925881068445812, dt = 0.003967583107738185
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.0%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 476.48 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.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.8489e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.67986084627756 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9298486515535502, dt = 0.0039676307817198865
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 404.92 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (65.5%)
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    | 4.7270e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.0243009183841 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.93381628233527, dt = 0.003967678651295823
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 436.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.3%)
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    | 4.7981e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.57563623070357 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.937783960986566, dt = 0.003967726716167648
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 411.87 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.1%)
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    | 4.7760e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.09535200258038 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9417516877027337, dt = 0.0039677749760342095
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 403.53 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.0%)
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    | 4.9514e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.91919298964127 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.945719462678768, dt = 0.003967823430591601
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.1%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 428.85 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.2%)
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    | 4.8114e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.8687907134025 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9496872861093595, dt = 0.003967872079533182
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.7%)
   patch tree reduce : 1983.00 ns (0.2%)
   gen split merge   : 891.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.1%)
   LB compute        : 849.36 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.1%)
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    | 4.6143e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.5730930837861 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9536551581888926, dt = 0.003967920922549628
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 382.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (67.4%)
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    | 4.8910e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.6068854859884 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9576230791114422, dt = 0.003967969959328953
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 426.34 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.3%)
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    | 4.8107e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.85788740047593 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.961591049070771, dt = 0.003968019189556551
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.2%)
   LB compute        : 459.05 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (64.7%)
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    | 4.8233e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.13278552507343 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9655590682603277, dt = 0.003968068612915233
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 359.72 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.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    | 4.8113e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.87396115925304 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.969527136873243, dt = 0.003968118229085255
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.5%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 365.56 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (62.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    | 4.4994e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.07495346066419 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9734952551023281, dt = 0.003968168037744358
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 369.46 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.6%)
Info: cfl dt = 0.0039682180385678                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9106e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.0407204768458 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9774634231400725, dt = 0.0039682180385678
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1634.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 464.83 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.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    | 4.9071e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.96511969347874 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9814316411786403, dt = 0.003968268231228389
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 403.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.9%)
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.9206e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.26077350388532 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9853999094098687, dt = 0.0039683186153965195
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 421.17 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.2%)
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.9377e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.63583723875689 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9893682280252651, dt = 0.003968369190740202
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 423.34 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.8%)
Info: cfl dt = 0.003968419956925101                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9031e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.88235164744103 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9933365972160053, dt = 0.003968419956925101
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 2.13 us    (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 379.95 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.4%)
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.8760e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.2918968678499 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9973050171729305, dt = 0.002694982827069481
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 392.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.8%)
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.8147e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.27642272249922 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 624.698765115 (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.11 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (58.0%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (0.4%)
   patch tree reduce : 902.00 ns  (0.2%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 368.01 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (61.7%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1242.00 ns (0.3%)
   patch tree reduce : 400.00 ns  (0.1%)
   gen split merge   : 361.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 261.00 ns  (0.1%)
   LB compute        : 398.16 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 1984.00 ns (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.0%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1212.00 ns (0.3%)
   patch tree reduce : 481.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 291.00 ns  (0.1%)
   LB compute        : 432.21 us  (98.3%)
   LB move op cnt    : 0
   LB apply          : 1934.00 ns (0.4%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.85 us    (1.9%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 494.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (62.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2567e+05 | 65536 |      2 | 1.540e-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.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 448.38 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.9464e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.64414500082421 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003961660569039922, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 488.90 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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    | 5.0487e+05 | 65536 |      2 | 1.298e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.87018372187075 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007923321138079843, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (0.3%)
   patch tree reduce : 1482.00 ns (0.1%)
   gen split merge   : 942.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.0%)
   LB compute        : 1709.05 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.8285e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.07761461087485 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011884981707119765, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.3%)
   patch tree reduce : 1914.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 434.22 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9201e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.07137030681945 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015846642276159686, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1703.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1033.00 ns (0.2%)
   LB compute        : 400.27 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9011e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.65787852264953 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019808302845199608, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 425.57 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8772e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.1380209767045 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02376996341423953, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 393.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (63.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9470e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.65685822415924 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02773162398327945, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 386.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.8629e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.82613896554423 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03169328455231937, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 428.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.8690e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.96046630272721 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03565494512135929, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (0.7%)
   patch tree reduce : 1704.00 ns (0.2%)
   gen split merge   : 951.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.1%)
   LB compute        : 769.98 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 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.7720e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.84950696779943 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03961660569039921, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 477.39 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.8049e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.56505429732255 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04357826625943913, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.6%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 364.87 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9168e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.99975312851507 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047539926828479045, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 434.50 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0058e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.93556331244486 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051501587397518964, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.4%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 407.38 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.9203e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.07626669022505 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05546324796655888, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.3%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 416.76 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.9259e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.19861168447062 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0594249085355988, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 449.98 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.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.9038e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.7175752776565 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06338656910463872, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 437.36 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 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.8918e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.4555416732975 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06734822967367864, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1183.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 388.83 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7927e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.29930902986308 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07130989024271855, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 444.80 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.8283e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.07421143601213 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07527155081175847, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 390.70 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.8337e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.19034343301374 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07923321138079839, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1503.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 357.55 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.8982e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.59393112134804 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08319487194983831, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 373.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (63.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8106e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.6879366026124 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08715653251887823, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 398.83 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9562e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.85810785432403 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09111819308791815, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 434.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.8134e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.74987234034907 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09507985365695806, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1472.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 382.61 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.7970e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.39358712430644 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09904151422599798, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1542.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 464.98 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.7883e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.20404987992747 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1030031747950379, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.31 us   (4.8%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 411.43 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.7430e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.21840690664733 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10696483536407782, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 427.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.8445e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.42625799672163 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11092649593311774, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 396.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.8304e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.11900761064936 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11488815650215765, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 421.76 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8399e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.32708192195085 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11884981707119757, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 393.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.9000e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.63365495776729 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12281147764023749, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 397.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.8720e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.0246440736271 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1267731382092774, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 400.30 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.9173e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.01155901850544 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13073479877831734, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 387.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.8556e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.66881735772304 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13469645934735727, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 390.76 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (62.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9290e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.26474786727665 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1386581199163972, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.8510e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.56745297671264 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14261978048543714, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 411.34 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8962e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.55065140555757 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14658144105447707, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 426.52 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.8286e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.07949279949969 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.150543101623517, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 450.57 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8551e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.65631413864656 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15450476219255693, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 398.41 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.9072e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.79006168122974 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15846642276159686, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 373.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (63.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9166e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.99564475998652 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1624280833306368, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.5%)
   patch tree reduce : 1574.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 404.66 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.7959e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.36937589778762 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16638974389967673, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 377.50 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (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.8935e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.49366744417952 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17035140446871666, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 375.34 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.8745e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.07851542259714 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1743130650377566, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1412.00 ns (0.3%)
   gen split merge   : 1041.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 387.51 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8177e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.84296319032818 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17827472560679652, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 372.35 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0450e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.78907984603421 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18223638617583646, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 390.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.9690e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.13619638072791 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1861980467448764, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.70 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.9044e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.73070075947533 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19015970731391632, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 411.86 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.9452e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.6177165364581 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19412136788295625, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 415.03 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.9352e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.39991645312637 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19808302845199618, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 418.91 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.8584e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.72833430048776 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20204468902103612, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 382.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8477e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.4959155112944 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20600634959007605, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 419.08 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 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.9241e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.15910678775107 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20996801015911598, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 418.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7666e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.73086537192124 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2139296707281559, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 406.70 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9124e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.90325855263526 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21789133129719584, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 429.09 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.8679e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.9362224523242 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22185299186623578, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 482.22 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 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.8684e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.9465457665581 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2258146524352757, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 407.31 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.7936e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.31842327224953 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22977631300431564, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 390.25 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.8895e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.40504083834078 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23373797357335557, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 418.68 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.8119e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.7165436831088 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2376996341423955, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 381.05 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9050e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.74260952644393 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24166129471143544, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 378.16 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.9358e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.4131092060468 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24562295528047537, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 382.68 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9073e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.79305792945041 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2495846158495153, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 424.24 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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    | 5.0288e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.43672480028089 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2535462764185552, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 402.04 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
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.4799e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.49176148944754 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2575079369875951, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.2%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 467.38 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.7408e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.17012394448737 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.261469597556635, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 1292.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 406.56 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.8540e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.63283906596456 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2654312581256749, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 408.67 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.8657e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.88822713874681 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2693929186947148, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 390.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.9680e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.11328904823444 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2733545792637547, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 386.19 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9600e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.93964804009632 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27731623983279463, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 405.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.8668e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.91145643465455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28127790040183454, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 1001.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 433.99 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9085e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.81811400835528 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28523956097087444, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 439.65 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9073e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.7921183352519 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28920122153991434, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 383.97 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7584e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.55174198914531 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29316288210895425, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 361.09 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.9484e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.68794050071085 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29712454267799415, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 375.23 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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    | 5.1068e+05 | 65536 |      2 | 1.283e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.13352905402651 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30108620324703406, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1402.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 377.45 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (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    | 5.0859e+05 | 65536 |      2 | 1.289e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.67860561678349 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30504786381607396, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 444.42 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9293e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.27215507025245 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30900952438511387, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 450.05 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.9616e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.97509788897015 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31297118495415377, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 391.17 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9592e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.92338714555954 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3169328455231937, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 391.70 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (62.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9223e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.11981845982193 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3208945060922336, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 378.01 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.8306e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.12315986216534 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3248561666612735, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 419.92 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.9315e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.31914172986123 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3288178272303134, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 1073.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 398.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.9045e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.73189487132936 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3327794877993533, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (0.8%)
   patch tree reduce : 1793.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 607.12 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.7715e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.83719468121888 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3367411483683932, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 410.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (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.9314e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.31704050076033 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3407028089374331, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.4%)
   LB compute        : 377.72 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.6031e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.17379533024838 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.344664469506473, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.5%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 418.30 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (63.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6269e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.69064945698567 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3486261300755129, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 420.25 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8232e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.96354041097533 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3525877906445528, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.5%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 387.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.9327e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.34593921130343 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3565494512135927, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 414.91 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 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.9473e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.66242110211851 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3605111117826326, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 427.67 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9226e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.12572749420141 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3644727723516725, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 382.47 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 20.86 us   (5.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.8030e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.52270750919651 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36843443292071243, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 1283.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 401.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.8808e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.21682672953699 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37239609348975233, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 413.09 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6848e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.95170001500125 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37635775405879224, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 374.47 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6996e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.27349076823077 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38031941462783214, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 408.96 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6532e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.26297423945151 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38428107519687205, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 411.43 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (62.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8217e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.93018915453166 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38824273576591195, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1093.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 364.94 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.6484e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.15810927261411 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39220439633495185, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 400.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6718e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.66757280503096 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39616605690399176, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1824.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 374.97 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7105e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.51038300922156 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40012771747303166, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.0%)
   patch tree reduce : 1403.00 ns (0.2%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 564.14 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.4572e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   1.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.99780219280062 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40408937804207157, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 390.76 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9398e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.49925311981575 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40805103861111147, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 403.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.8403e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.3353799872863 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4120126991801514, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 510.46 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 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    | 2.9747e+05 | 65536 |      2 | 2.203e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.73634344423213 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4159743597491913, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 410.25 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.8948e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.5202117449381 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4199360203182312, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 378.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (63.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8283e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.0727359696497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4238976808872711, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 416.45 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8085e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.64186854935826 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.427859341456311, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 409.45 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9076e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.79863506119906 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4318210020253509, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 499.18 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.4%)
Info: cfl dt = 0.0039616605690399225                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8822e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.24593130083495 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4357826625943908, dt = 0.0039616605690399225
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 406.95 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.6%)
Info: cfl dt = 0.0039616605690399225                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7808e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.03928702663926 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4397443231634307, dt = 0.0039616605690399225
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 446.66 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.9%)
Info: cfl dt = 0.003961660569039923                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8646e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.86407526577472 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4437059837324706, dt = 0.003961660569039923
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1472.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 439.79 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.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.8578e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.71639216678815 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4476676443015105, dt = 0.003961660569039923
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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   (4.7%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 428.68 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.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.7101e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.50138218276808 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4516293048705504, dt = 0.003961660569039923
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 384.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (64.0%)
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.8889e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.39231835047433 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4555909654395903, dt = 0.003961660569039924
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 429.70 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.1%)
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.8272e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.05063757551393 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4595526260086302, dt = 0.003961660569039926
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 405.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.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.8084e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.64108389417552 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46351428657767013, dt = 0.003961660569039926
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 404.07 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.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.7629e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.6508020510516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46747594714671004, dt = 0.003961660569039928
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 376.18 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (62.8%)
Info: cfl dt = 0.003961660569039928                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7465e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.29456687445723 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47143760771574994, dt = 0.003961660569039928
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 420.22 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.7%)
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.8889e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.39249137114118 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47539926828478984, dt = 0.003961660569039929
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.1%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 447.36 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.3%)
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.8179e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.84827528838316 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47936092885382975, dt = 0.003961660569039931
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.6%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 357.36 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.8%)
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.8481e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.50453132039289 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48332258942286965, dt = 0.003961660569039933
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 387.31 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.0%)
Info: cfl dt = 0.003961660569039935                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8807e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.21352417606779 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4872842499919096, dt = 0.003961660569039935
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 379.24 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.9%)
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.7427e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.21188355857757 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4912459105609496, dt = 0.003961660569039937
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 973.00 ns  (0.2%)
   LB compute        : 400.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.2%)
Info: cfl dt = 0.00396166056903994                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0885e+05 | 65536 |      2 | 1.288e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.73643099896357 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49520757112998953, dt = 0.00396166056903994
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 382.65 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.6%)
Info: cfl dt = 0.003961660569039943                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4120e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.01496645889367 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4991692316990295, dt = 0.003961660569039943
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 396.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.9%)
Info: cfl dt = 0.003961660569039947                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6185e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.50877836539081 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5031308922680694, dt = 0.003961660569039947
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 419.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.3%)
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.5979e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.05964684239035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5070925528371093, dt = 0.00396166056903995
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 412.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.3%)
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.6175e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.48724728095738 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5110542134061492, dt = 0.003961660569039955
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (0.3%)
   patch tree reduce : 1773.00 ns (0.1%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 1644.35 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.0%)
Info: cfl dt = 0.00396166056903996                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6755e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.74864793869769 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150158739751891, dt = 0.00396166056903996
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 425.51 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (72.0%)
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.8708e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.99823192227254 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5189775345442291, dt = 0.003961660569039966
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 441.32 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.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.8364e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.2495018742984 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5229391951132691, dt = 0.003961660569039973
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1634.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 464.86 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.9%)
Info: cfl dt = 0.00396166056903998                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9005e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.64418721992324 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5269008556823092, dt = 0.00396166056903998
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 412.54 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.2%)
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.8775e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.14333793866973 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5308625162513492, dt = 0.003961660569039988
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (0.4%)
   patch tree reduce : 1533.00 ns (0.1%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 1406.18 us (98.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.4%)
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.7252e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.82935194425828 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5348241768203892, dt = 0.003961660569039999
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 411.80 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.2%)
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.8541e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.63482165592723 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5387858373894292, dt = 0.003961660569040009
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 400.79 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.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.5835e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.74655264552771 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5427474979584692, dt = 0.003961660569040021
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1532.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 376.48 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (67.2%)
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.8607e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.77793657339922 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5467091585275092, dt = 0.003961660569040035
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 411.30 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.1%)
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.9016e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.66944713110634 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5506708190965492, dt = 0.003961660569040051
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 429.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.5%)
Info: cfl dt = 0.003961660569040068                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7750e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.91333279944284 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5546324796655893, dt = 0.003961660569040068
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 384.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.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    | 4.9705e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.16802945961228 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5585941402346293, dt = 0.003961660569040087
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.5%)
   patch tree reduce : 1382.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 366.15 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.7%)
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.7199e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.71394653037534 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5625558008036694, dt = 0.003961660569040109
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 381.92 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (62.0%)
Info: cfl dt = 0.003961660569040132                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7990e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.43529247963971 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5665174613727095, dt = 0.003961660569040132
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 390.09 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (70.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    | 4.9288e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.26039728813286 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5704791219417497, dt = 0.00396166056904016
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 425.43 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.5%)
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.8279e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.06397304883627 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5744407825107898, dt = 0.00396166056904019
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 446.96 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (65.8%)
Info: cfl dt = 0.003961660569040223                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9778e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.3261204311587 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.57840244307983, dt = 0.003961660569040223
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.2%)
   patch tree reduce : 1552.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 472.98 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.3%)
Info: cfl dt = 0.003961660569040259                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8622e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.81223485818285 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5823641036488703, dt = 0.003961660569040259
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 398.68 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.6%)
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.7463e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.28844082769736 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5863257642179105, dt = 0.0039616605690403
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 383.28 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.0%)
Info: cfl dt = 0.003961660569040344                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6907e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.07817840992014 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5902874247869508, dt = 0.003961660569040344
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 381.72 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.0%)
Info: cfl dt = 0.003961660569040394                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8731e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.04962471666788 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5942490853559912, dt = 0.003961660569040394
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 395.79 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.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.8084e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.63966048908793 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5982107459250315, dt = 0.003961660569040448
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 425.86 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.0%)
Info: cfl dt = 0.003961660569040509                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8239e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.97882418505323 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.602172406494072, dt = 0.003961660569040509
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 415.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (61.8%)
Info: cfl dt = 0.003961660569040575                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9037e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.71355881464018 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6061340670631125, dt = 0.003961660569040575
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 430.86 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (68.4%)
Info: cfl dt = 0.003961660569040648                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8541e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.63482009112242 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.610095727632153, dt = 0.003961660569040648
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (0.7%)
   patch tree reduce : 1623.00 ns (0.2%)
   gen split merge   : 1092.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.1%)
   LB compute        : 844.99 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.0%)
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.8445e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.42570545921437 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6140573882011937, dt = 0.003961660569040728
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.1%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 492.51 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (74.6%)
Info: cfl dt = 0.003961660569040817                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9304e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.29650091929757 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6180190487702344, dt = 0.003961660569040817
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 17.24 us   (4.1%)
   LB compute        : 386.90 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.2%)
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.8230e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.95924627213385 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6219807093392752, dt = 0.003961660569040913
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 422.60 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.7%)
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.8373e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.26940889849607 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6259423699083161, dt = 0.003961660569041019
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 394.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.6%)
Info: cfl dt = 0.003961660569041134                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8463e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.46548581238318 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6299040304773571, dt = 0.003961660569041134
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (0.8%)
   patch tree reduce : 1513.00 ns (0.2%)
   gen split merge   : 872.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 652.93 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.9%)
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.8189e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.86933705754676 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6338656910463982, dt = 0.00396166056904126
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 405.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.7%)
Info: cfl dt = 0.003961660569041399                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8502e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.55015846460573 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6378273516154395, dt = 0.003961660569041399
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 386.36 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.7%)
Info: cfl dt = 0.00396166056904155                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7219e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.7583293838157 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6417890121844808, dt = 0.00396166056904155
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.3%)
   LB compute        : 397.25 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.5%)
Info: cfl dt = 0.003961660569041714                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8639e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.84888302760555 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6457506727535224, dt = 0.003961660569041714
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 410.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.7%)
Info: cfl dt = 0.003961660569041893                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9328e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.34825973126922 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6497123333225641, dt = 0.003961660569041893
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 382.53 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.7%)
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.8454e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.44665918008639 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.653673993891606, dt = 0.003961660569042087
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1092.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 418.99 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.0%)
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.7942e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.33263361072929 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6576356544606481, dt = 0.0039616605690423
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 378.65 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.3%)
Info: cfl dt = 0.00396166056904253                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7942e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.33068357143543 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6615973150296904, dt = 0.00396166056904253
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 411.50 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.6%)
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.8202e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.89777488362344 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.665558975598733, dt = 0.00396166056904278
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 381.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.9%)
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.7820e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.06682685837158 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6695206361677758, dt = 0.00396166056904305
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 413.62 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.6%)
Info: cfl dt = 0.003961660569043342                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7403e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.15780134753271 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734822967368188, dt = 0.003961660569043342
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.4%)
   patch tree reduce : 1372.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 362.49 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.7%)
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.7876e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.18728212596288 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6774439573058622, dt = 0.003961660569043659
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 393.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.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    | 4.9651e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.0498222463833 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6814056178749058, dt = 0.0039616605690440026
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.90 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.6%)
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.8655e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.8832469961979 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6853672784439498, dt = 0.003961660569044373
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 435.70 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.7%)
Info: cfl dt = 0.003961660569044774                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8988e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.60826377044766 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6893289390129942, dt = 0.003961660569044774
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.3%)
   LB compute        : 408.85 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.1%)
Info: cfl dt = 0.0039616605690452064                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9141e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.93986944963683 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.693290599582039, dt = 0.0039616605690452064
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.2%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 435.31 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.1%)
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.9700e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.15679790532785 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6972522601510842, dt = 0.003961660569045673
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 396.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.9%)
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.8274e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.05506997575193 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7012139207201299, dt = 0.003961660569046174
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 391.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.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.8703e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.98768114304083 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.705175581289176, dt = 0.003961660569046716
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 427.87 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
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.9458e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.63178974152736 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7091372418582227, dt = 0.003961660569047297
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 369.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.2%)
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.8116e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.71095047961953 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.71309890242727, dt = 0.003961660569047923
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 403.38 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.5%)
Info: cfl dt = 0.003961660569048595                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8750e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.08954831991016 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7170605629963179, dt = 0.003961660569048595
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.3%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 432.50 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.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.8515e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.57757401974966 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7210222235653665, dt = 0.003961660569049316
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 380.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (63.6%)
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.8435e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.4044188611139 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7249838841344158, dt = 0.0039616605690500906
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 417.91 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.2%)
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.8135e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.75096868412989 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.728945544703466, dt = 0.00396166056905092
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 388.86 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.5%)
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.6658e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.53759313488703 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7329072052725168, dt = 0.00396166056905181
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 403.58 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.6%)
Info: cfl dt = 0.003961660569052762                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1573e+05 | 65536 |      2 | 1.576e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.47109618529458 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7368688658415686, dt = 0.003961660569052762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.1%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 456.92 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.4%)
Info: cfl dt = 0.003961660569053781                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5854e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.7881485570742 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7408305264106214, dt = 0.003961660569053781
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 439.66 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.9%)
Info: cfl dt = 0.003961660569054871                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7604e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.597101814633 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7447921869796752, dt = 0.003961660569054871
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1874.00 ns (0.3%)
   gen split merge   : 1011.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 608.70 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (63.5%)
Info: cfl dt = 0.0039616605690560355                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7779e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.976078091663 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7487538475487301, dt = 0.0039616605690560355
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (1.6%)
   patch tree reduce : 1963.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 421.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (71.6%)
Info: cfl dt = 0.003961660569057279                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6628e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.47264157692373 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7527155081177861, dt = 0.003961660569057279
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 396.86 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (66.5%)
Info: cfl dt = 0.003961660569058607                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8402e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.33359299661997 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7566771686868434, dt = 0.003961660569058607
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 390.56 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.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    | 4.8467e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.47312006232569 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.760638829255902, dt = 0.003961660569060024
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 426.15 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.2%)
Info: cfl dt = 0.0039616605690615345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8492e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.52944782327778 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.764600489824962, dt = 0.0039616605690615345
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 1172.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 454.64 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.2%)
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.8878e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.36964164153926 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7685621503940235, dt = 0.0039616605690631435
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 409.77 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (68.8%)
Info: cfl dt = 0.003961660569064857                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7770e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.9572482165518 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7725238109630866, dt = 0.003961660569064857
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 397.67 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (63.6%)
Info: cfl dt = 0.003961660569066682                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9104e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.85992589964897 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7764854715321515, dt = 0.003961660569066682
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 447.83 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.1%)
Info: cfl dt = 0.0039616605690686235                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1086e+05 | 65536 |      2 | 2.108e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.64932730267756 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7804471321012182, dt = 0.0039616605690686235
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 367.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.3%)
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.8435e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.40490573934176 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7844087926702868, dt = 0.003961660569070687
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (0.9%)
   patch tree reduce : 1894.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.1%)
   LB compute        : 621.95 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (69.4%)
Info: cfl dt = 0.0039616605690728805                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8751e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.09191506619074 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7883704532393575, dt = 0.0039616605690728805
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 433.56 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (64.9%)
Info: cfl dt = 0.0039616605690752085                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9330e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.35298511205833 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7923321138084304, dt = 0.0039616605690752085
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 408.83 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.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.8703e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.98749762264036 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7962937743775056, dt = 0.003961660569077681
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 411.14 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (64.5%)
Info: cfl dt = 0.003961660569080304                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7728e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.86538629535013 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8002554349465832, dt = 0.003961660569080304
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (0.8%)
   patch tree reduce : 1353.00 ns (0.2%)
   gen split merge   : 831.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.1%)
   LB compute        : 710.65 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (69.6%)
Info: cfl dt = 0.003961660569083086                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7405e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.16221425056389 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8042170955156636, dt = 0.003961660569083086
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 403.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.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    | 4.8133e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.74819671132835 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8081787560847467, dt = 0.003961660569086034
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 386.96 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.9%)
Info: cfl dt = 0.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.9986e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.7807034901309 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8121404166538326, dt = 0.003961660569089157
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 382.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.4%)
Info: cfl dt = 0.003961660569092464                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1161e+05 | 65536 |      2 | 1.281e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.337305478966 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8161020772229218, dt = 0.003961660569092464
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 405.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.1%)
Info: cfl dt = 0.003961660569095964                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1180e+05 | 65536 |      2 | 1.281e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.37802156775115 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8200637377920142, dt = 0.003961660569095964
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 406.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.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    | 5.1214e+05 | 65536 |      2 | 1.280e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.45290074004753 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8240253983611102, dt = 0.003961660569099666
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 378.38 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.2%)
Info: cfl dt = 0.003961660569103581                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0722e+05 | 65536 |      2 | 1.292e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.38138140738162 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8279870589302099, dt = 0.003961660569103581
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.3%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 450.37 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.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.9017e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.67209353941507 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8319487194993135, dt = 0.003961660569107718
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1683.00 ns (0.0%)
   gen split merge   : 852.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.0%)
   LB compute        : 10.74 ms   (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.05 us    (75.5%)
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.5483e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.9807586008043 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8359103800684212, dt = 0.003961660569112089
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.6%)
   patch tree reduce : 1352.00 ns (0.4%)
   gen split merge   : 1283.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 363.85 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.2%)
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.8904e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.42491569460333 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8398720406375333, dt = 0.003961660569116703
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (0.4%)
   patch tree reduce : 1473.00 ns (0.1%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.1%)
   LB compute        : 1571.42 us (98.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.8%)
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.8182e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.85364651371478 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.84383370120665, dt = 0.003961660569121574
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.80 us   (5.1%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 1293.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 391.49 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.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    | 4.9210e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.09205939419205 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8477953617757716, dt = 0.003961660569126712
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 406.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (64.4%)
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.8867e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.34534263953323 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8517570223448984, dt = 0.00396166056913213
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 444.19 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.9%)
Info: cfl dt = 0.003961660569137841                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9089e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.82752567471677 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8557186829140305, dt = 0.003961660569137841
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 426.54 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.0%)
Info: cfl dt = 0.0039616605691438584                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8922e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.46467020167111 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8596803434831684, dt = 0.0039616605691438584
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 435.67 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.9%)
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.9126e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.90716670121846 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8636420040523122, dt = 0.003961660569150194
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 409.52 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.4%)
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.7849e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.12874579821536 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8676036646214623, dt = 0.003961660569156865
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 398.54 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.4%)
Info: cfl dt = 0.003961660569163886                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7789e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.99921759802999 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8715653251906191, dt = 0.003961660569163886
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 401.65 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.8%)
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.9603e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.94707358635863 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.875526985759783, dt = 0.003961660569171269
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 401.23 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.8%)
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.9021e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.67868818863195 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8794886463289543, dt = 0.003961660569179033
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 400.23 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.7%)
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.8952e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.53032374455753 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8834503068981333, dt = 0.003961660569187193
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 399.69 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.8%)
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.8115e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.70867185658342 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8874119674673205, dt = 0.003961660569195766
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 368.94 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.2%)
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    | 5.0062e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.94520702382452 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913736280365163, dt = 0.003961660569204769
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 405.63 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.2%)
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.9421e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.55044214850524 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8953352886057211, dt = 0.0039616605692142206
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 416.69 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (63.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.8849e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.30630950661693 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8992969491749353, dt = 0.003961660569224141
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 394.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.4%)
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.8236e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.9723901227446 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9032586097441594, dt = 0.003961660569234546
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 395.58 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.8%)
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.9337e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.36696734039202 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9072202703133939, dt = 0.003961660569245459
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 385.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.2%)
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.7779e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.97777156602255 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9111819308826393, dt = 0.003961660569256898
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.2%)
   LB compute        : 484.23 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.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.9142e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.94330153409759 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9151435914518963, dt = 0.003961660569268885
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 454.49 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (67.1%)
Info: cfl dt = 0.003961660569281443                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8385e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.29598534678072 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9191052520211651, dt = 0.003961660569281443
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 435.28 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (63.5%)
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    | 5.0754e+05 | 65536 |      2 | 1.291e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.45101255330269 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9230669125904466, dt = 0.003961660569294591
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 410.49 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.2%)
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    | 5.0894e+05 | 65536 |      2 | 1.288e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.75578091752558 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9270285731597412, dt = 0.003961660569308357
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 428.14 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.1%)
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    | 5.0219e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.28582979229242 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9309902337290495, dt = 0.003961660569322761
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.1%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 443.54 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.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    | 5.0441e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.77047429201045 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9349518942983723, dt = 0.00396166056933783
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.1%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 437.67 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.0%)
Info: cfl dt = 0.003961660569353588                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0985e+05 | 65536 |      2 | 1.285e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.95301630125894 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9389135548677101, dt = 0.003961660569353588
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.2%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 393.76 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (64.8%)
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    | 5.1283e+05 | 65536 |      2 | 1.278e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.60294407855925 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9428752154370637, dt = 0.003961660569370061
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 1193.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 405.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.5%)
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    | 5.0863e+05 | 65536 |      2 | 1.288e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.68766185375001 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9468368760064337, dt = 0.0039616605693872774
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.8%)
   patch tree reduce : 1573.00 ns (0.2%)
   gen split merge   : 1303.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 699.16 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (69.6%)
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    | 5.0922e+05 | 65536 |      2 | 1.287e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.81567767946515 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.950798536575821, dt = 0.003961660569405264
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 381.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.1%)
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    | 5.0694e+05 | 65536 |      2 | 1.293e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.31951417645415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9547601971452263, dt = 0.003961660569424049
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 382.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.1%)
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.9673e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.09781724481763 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9587218577146503, dt = 0.003961660569443662
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 388.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.8%)
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.8385e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.29546993854878 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.962683518284094, dt = 0.003961660569464134
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (0.4%)
   patch tree reduce : 1513.00 ns (0.1%)
   gen split merge   : 862.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 1593.92 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (63.8%)
Info: cfl dt = 0.003961660569485495                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7508e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.38623533951011 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9666451788535582, dt = 0.003961660569485495
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.3%)
   patch tree reduce : 1542.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 447.67 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.0%)
Info: cfl dt = 0.003961660569507777                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9779e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.32877892844307 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9706068394230437, dt = 0.003961660569507777
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 433.99 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.2%)
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    | 5.0338e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.54538449704143 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9745684999925515, dt = 0.003961660569531013
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.3%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 425.62 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.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.8383e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.29132039026955 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9785301605620825, dt = 0.003961660569555236
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 438.92 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.2%)
Info: cfl dt = 0.003961660569580482                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8529e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.60896778055776 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9824918211316378, dt = 0.003961660569580482
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 420.33 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.3%)
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.8308e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.12736824963234 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9864534817012183, dt = 0.003961660569606785
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 436.44 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.7%)
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.7911e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.26327157423056 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.990415142270825, dt = 0.0039616605696341815
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.5%)
   patch tree reduce : 1652.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 373.16 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (62.1%)
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.8334e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.18413787337828 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9943768028404593, dt = 0.003961660569662711
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 426.29 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.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.8836e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.27607422541809 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.998338463410122, dt = 0.003961660569692409
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.65 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.7%)
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.8737e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.06179608285171 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0023001239798144, dt = 0.003961660569723316
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 386.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.3%)
Info: cfl dt = 0.003961660569755473                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8295e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.09929685134223 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0062617845495376, dt = 0.003961660569755473
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 384.09 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.3%)
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.8210e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.91501062694401 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.010223445119293, dt = 0.0039616605697889214
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 408.28 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.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.8615e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.79535841652601 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.014185105689082, dt = 0.003961660569823703
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 399.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.7%)
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.9157e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.97653353662352 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0181467662589057, dt = 0.003961660569859861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 416.03 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.6%)
Info: cfl dt = 0.003961660569897442                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7999e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.45481541904492 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0221084268287655, dt = 0.003961660569897442
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 382.45 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.0%)
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.9263e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.2068978418681 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.026070087398663, dt = 0.003961660569936491
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1713.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 373.22 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.5%)
Info: cfl dt = 0.003961660569977053                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8119e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.71755093136952 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0300317479685994, dt = 0.003961660569977053
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1412.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 369.17 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.3%)
Info: cfl dt = 0.003961660570019178                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9465e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.64614452322029 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0339934085385765, dt = 0.003961660570019178
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 391.28 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.6%)
Info: cfl dt = 0.003961660570062915                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8716e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.01511646218553 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0379550691085957, dt = 0.003961660570062915
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.1%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 463.75 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.8%)
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.8137e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.75496344225732 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0419167296786587, dt = 0.003961660570108313
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 381.36 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.8%)
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.8543e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.6404083879141 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.045878390248767, dt = 0.003961660570155425
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 440.63 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.5%)
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.8532e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.61516572545723 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0498400508189223, dt = 0.003961660570204303
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 393.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.8%)
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.7861e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.15514718656291 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0538017113891265, dt = 0.003961660570255001
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 30.33 us   (6.9%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 1193.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 396.81 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.1%)
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.8461e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.46000028777863 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0577633719593815, dt = 0.003961660570307574
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 398.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.4%)
Info: cfl dt = 0.003961660570362078                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9010e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.65543783876225 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0617250325296892, dt = 0.003961660570362078
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 389.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.3%)
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.8278e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.06197161832496 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0656866931000513, dt = 0.003961660570418574
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 431.42 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.28 us    (66.5%)
Info: cfl dt = 0.003961660570477117                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9385e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.47227056301693 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0696483536704697, dt = 0.003961660570477117
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 438.31 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.4%)
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.9070e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.78657310583296 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0736100142409468, dt = 0.003961660570537769
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 378.86 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.1%)
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.8859e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.32747608299806 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0775716748114845, dt = 0.003961660570600591
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 410.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.8%)
Info: cfl dt = 0.003961660570665648                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7893e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.2244370094992 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.081533335382085, dt = 0.003961660570665648
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 362.05 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.0%)
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.9225e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.12422688420634 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0854949959527507, dt = 0.003961660570733002
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 385.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.9%)
Info: cfl dt = 0.003961660570802721                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7452e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.26625434225643 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0894566565234838, dt = 0.003961660570802721
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1462.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 382.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.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.9180e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.0263712941127 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0934183170942866, dt = 0.0039616605708748705
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 438.91 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.1%)
Info: cfl dt = 0.003961660570949519                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9459e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.63321615932769 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0973799776651614, dt = 0.003961660570949519
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 430.13 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.4%)
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.9333e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.35832191637525 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.101341638236111, dt = 0.003961660571026739
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 352.56 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.5%)
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.9273e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.22773772542385 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1053032988071376, dt = 0.003961660571106598
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 402.47 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.1%)
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.8537e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.6271765529626 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1092649593782442, dt = 0.003961660571189174
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 363.92 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.3%)
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.9030e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.69973033910445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1132266199494334, dt = 0.003961660571274537
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 422.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.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.9153e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.96752806451269 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1171882805207078, dt = 0.003961660571362766
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 409.31 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.0%)
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.8948e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.5200646251546 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1211499410920707, dt = 0.003961660571453937
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 1011.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 401.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (71.5%)
Info: cfl dt = 0.00396166057154813                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8184e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.85787194433014 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1251116016635245, dt = 0.00396166057154813
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1363.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 359.33 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.0%)
Info: cfl dt = 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.4693e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.26103288261505 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1290732622350728, dt = 0.003961660571645425
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 386.86 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.2%)
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.8749e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.0875723679365 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1330349228067182, dt = 0.0039616605717459055
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 412.24 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.9%)
Info: cfl dt = 0.003961660571849654                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8980e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.591185897491 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.136996583378464, dt = 0.003961660571849654
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 414.03 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.3%)
Info: cfl dt = 0.003961660571956757                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8490e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.52426565119013 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1409582439503136, dt = 0.003961660571956757
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 1272.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 455.33 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (64.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.9374e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.4473292867043 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1449199045222704, dt = 0.003961660572067302
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 407.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.2%)
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.9267e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.21492981577728 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1488815650943378, dt = 0.003961660572181376
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 1021.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 406.90 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.7%)
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.9062e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.76808961943182 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.152843225666519, dt = 0.0039616605722990715
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 973.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 415.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (63.6%)
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.8877e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.36585687045107 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.156804886238818, dt = 0.00396166057242048
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 377.17 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.1%)
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.9042e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.72643501432363 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1607665468112385, dt = 0.0039616605725456945
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 446.58 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.4%)
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.8755e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.10040442947849 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1647282073837841, dt = 0.003961660572674813
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 391.63 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.9%)
Info: cfl dt = 0.00396166057280793                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8688e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.9541893084178 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.168689867956459, dt = 0.00396166057280793
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 409.72 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.4%)
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.8456e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.45018642285244 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.172651528529267, dt = 0.003961660572945148
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 378.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.5%)
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    | 5.0184e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.21153433476731 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.176613189102212, dt = 0.003961660573086566
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 390.84 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.5%)
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.8861e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.33216996111604 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1805748496752986, dt = 0.003961660573232286
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 405.90 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.2%)
Info: cfl dt = 0.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.7970e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.39277038501982 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1845365102485308, dt = 0.003961660573382414
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 421.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.0%)
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.9315e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.31859917014717 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1884981708219131, dt = 0.003961660573537058
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 437.95 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.8%)
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.9118e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.89172742298824 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1924598313954502, dt = 0.003961660573696323
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 430.40 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.4%)
Info: cfl dt = 0.003961660573860322                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8351e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.22257327434576 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1964214919691465, dt = 0.003961660573860322
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.0%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 491.38 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.1%)
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.8850e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.30809332837167 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2003831525430069, dt = 0.003961660574029166
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 386.88 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.6%)
Info: cfl dt = 0.003961660574202968                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8717e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.01805924378095 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.204344813117036, dt = 0.003961660574202968
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 409.10 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.4%)
Info: cfl dt = 0.0039616605743818456                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9162e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.98619395977676 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.208306473691239, dt = 0.0039616605743818456
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 388.94 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.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.8420e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.3710867571439 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2122681342656207, dt = 0.003961660574565917
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1554.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.2%)
   LB compute        : 484.34 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (68.5%)
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.8823e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.24785559350117 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2162297948401866, dt = 0.0039616605747553
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 391.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.7%)
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.9254e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.1859486078817 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2201914554149418, dt = 0.00396166057495012
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 410.87 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (63.9%)
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.8989e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.60966648585229 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.224153115989892, dt = 0.003961660575150498
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 436.63 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.3%)
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.7842e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.11390021651951 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2281147765650424, dt = 0.003961660575356561
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 416.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.0%)
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.8247e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.99627223850798 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.232076437140399, dt = 0.003961660575568436
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 382.56 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.9%)
Info: cfl dt = 0.003961660575786255                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8699e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.97836743563747 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2360380977159673, dt = 0.003961660575786255
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 1303.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 377.67 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.6%)
Info: cfl dt = 0.003961660576010149                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8746e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.08063015613884 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2399997582917535, dt = 0.003961660576010149
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.0%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 993.00 ns  (0.2%)
   LB compute        : 494.57 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.5%)
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.8451e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.43943429399093 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2439614188677637, dt = 0.003961660576240252
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 415.65 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (66.2%)
Info: cfl dt = 0.003961660576476703                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8562e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.68001283682098 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.247923079444004, dt = 0.003961660576476703
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 398.38 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.0%)
Info: cfl dt = 0.003961660576719635                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8476e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.49349666814108 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2518847400204807, dt = 0.003961660576719635
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1393.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 377.16 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.0%)
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.8211e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.91659067600725 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2558464005972003, dt = 0.0039616605769691934
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 379.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.4%)
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.8507e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.56198436561914 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2598080611741695, dt = 0.003961660577225519
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 404.33 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.7%)
Info: cfl dt = 0.003961660577488757                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7928e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.30097664691449 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.263769721751395, dt = 0.003961660577488757
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 416.27 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.5%)
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.7867e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.16828916921604 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2677313823288838, dt = 0.003961660577759055
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 385.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.2%)
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.8410e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.35107676051838 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2716930429066429, dt = 0.003961660578036562
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 409.76 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.3%)
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.9588e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.91426422449162 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2756547034846795, dt = 0.0039616605783214295
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 406.34 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.7%)
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.8463e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.46634240060182 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.279616364063001, dt = 0.003961660578613811
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 412.70 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.9%)
Info: cfl dt = 0.003961660578913863                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8735e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.05748993325862 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2835780246416149, dt = 0.003961660578913863
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 413.88 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.9%)
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.8049e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.56412616108575 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2875396852205288, dt = 0.003961660579221745
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 412.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.6%)
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.9381e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.46377112214729 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2915013457997504, dt = 0.003961660579537616
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 377.08 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.4%)
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.8035e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.53484912128559 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.295463006379288, dt = 0.003961660579861641
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.99 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.2%)
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.8720e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.02396573136842 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2994246669591496, dt = 0.003961660580193983
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 400.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.6%)
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.8871e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.35305513675635 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3033863275393436, dt = 0.003961660580534812
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 381.87 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.8%)
Info: cfl dt = 0.003961660580884294                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8950e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.52495710911377 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3073479881198784, dt = 0.003961660580884294
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 388.82 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.6%)
Info: cfl dt = 0.003961660581242607                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0036e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.88805904914499 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3113096487007627, dt = 0.003961660581242607
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 413.45 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.0%)
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    | 4.8357e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.23418377279445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3152713092820054, dt = 0.003961660581609921
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 368.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.4%)
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.7816e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.05745607289107 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3192329698636154, dt = 0.003961660581986416
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 413.26 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.4%)
Info: cfl dt = 0.003961660582372272                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9445e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.60341923443042 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3231946304456017, dt = 0.003961660582372272
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 399.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.5%)
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    | 4.8456e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.44948341311664 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.327156291027974, dt = 0.003961660582767668
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 389.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.0%)
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.8812e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.22464646446565 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3311179516107416, dt = 0.003961660583172792
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 406.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.8%)
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.7979e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.4128181054978 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3350796121939144, dt = 0.003961660583587828
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 422.23 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.1%)
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.8822e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.246958262069 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3390412727775023, dt = 0.003961660584012968
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 437.45 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.0%)
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.9147e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.95297789169128 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3430029333615152, dt = 0.0039616605844484025
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 16.85 us   (3.6%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 435.49 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.1%)
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.8311e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.13439755681975 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3469645939459636, dt = 0.003961660584894326
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 458.69 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.4%)
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.9279e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.24058861157168 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3509262545308578, dt = 0.003961660585350937
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 380.97 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (65.4%)
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.8509e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.56628755686046 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3548879151162088, dt = 0.0039616605858184325
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 412.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.3%)
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.8433e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.40018560827028 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3588495757020271, dt = 0.003961660586297016
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1744.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 385.75 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.0%)
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.7454e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.26910587049024 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3628112362883242, dt = 0.003961660586786892
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 411.99 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.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.8106e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.6894755236615 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3667728968751112, dt = 0.003961660587288269
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 398.66 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.4%)
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    | 4.9045e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.73095764343616 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3707345574623995, dt = 0.003961660587801355
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 384.37 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (66.0%)
Info: cfl dt = 0.003961660588326364                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8324e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.16217453150999 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.374696218050201, dt = 0.003961660588326364
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 377.66 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.0%)
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.8898e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.41236761304037 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3786578786385273, dt = 0.003961660588863509
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 380.06 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.9%)
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.8931e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.4848262616133 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3826195392273908, dt = 0.00396166058941301
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 409.13 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.6%)
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.9568e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.86931309293013 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3865811998168038, dt = 0.003961660589975087
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.3%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 433.87 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.6%)
Info: cfl dt = 0.003961660590549962                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8329e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.1742392474279 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3905428604067789, dt = 0.003961660590549962
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 444.30 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.3%)
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.8475e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.49202382312572 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3945045209973288, dt = 0.0039616605911378605
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 439.78 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (70.6%)
Info: cfl dt = 0.003961660591739012                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8481e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.50439220293602 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3984661815884667, dt = 0.003961660591739012
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 417.27 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.8%)
Info: cfl dt = 0.0039616605923536476                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8323e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.16139689131492 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4024278421802057, dt = 0.0039616605923536476
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.3%)
   LB compute        : 399.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.4%)
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.8829e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.26173952040513 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4063895027725593, dt = 0.003961660592982001
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 408.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.8%)
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.9618e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.97845269134889 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4103511633655412, dt = 0.003961660593624308
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.06 us   (4.9%)
   patch tree reduce : 1602.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 410.84 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.3%)
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.9178e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.02224222347377 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4143128239591656, dt = 0.003961660594280809
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1814.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 369.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.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    | 4.9452e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.61672002244902 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4182744845534463, dt = 0.0039616605949517455
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 384.87 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.4%)
Info: cfl dt = 0.003961660595637362                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5284e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.54666689210605 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.422236145148398, dt = 0.003961660595637362
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 1183.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 385.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.5%)
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.8870e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.35101101544106 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4261978057440354, dt = 0.0039616605963379075
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 414.18 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.2%)
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.9970e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.7454880070399 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4301594663403734, dt = 0.003961660597053631
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1382.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 380.06 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.4%)
Info: cfl dt = 0.0039616605977847875                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9563e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.85962663989743 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.434121126937427, dt = 0.0039616605977847875
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 427.43 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.2%)
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.9740e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.24501913162858 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4380827875352118, dt = 0.00396166059853163
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.1%)
   patch tree reduce : 1502.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 464.91 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (63.7%)
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.7746e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.90449877308697 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4420444481337433, dt = 0.003961660599294421
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 1393.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 444.08 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (65.9%)
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.8776e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.14695136445904 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4460061087330378, dt = 0.003961660600073419
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 387.72 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.5%)
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.8942e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.50817282525843 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4499677693331112, dt = 0.00396166060086889
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1223.00 ns (0.3%)
   LB compute        : 390.61 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.8%)
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.8730e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.0460708285186 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4539294299339802, dt = 0.003961660601681101
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 396.41 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.1%)
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.8910e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.43894324679071 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4578910905356612, dt = 0.003961660602510323
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 414.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.9%)
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.8395e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.31772367773542 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4618527511381716, dt = 0.0039616606033568294
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 485.63 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.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    | 4.8661e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.89615322676018 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4658144117415284, dt = 0.003961660604220896
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 387.50 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.4%)
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.8193e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.87889678935383 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4697760723457494, dt = 0.003961660605102801
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 390.09 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (63.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.8401e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.33123680648968 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.473737732950852, dt = 0.003961660606002827
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 424.28 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.5%)
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.8355e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.23060805521523 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.477699393556855, dt = 0.003961660606921258
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 403.84 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.0%)
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.9265e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.21095414163966 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4816610541637762, dt = 0.003961660607858382
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 384.29 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (61.6%)
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.8080e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.63093690258584 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4856227147716345, dt = 0.003961660608814491
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.1%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 507.68 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (67.3%)
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.8681e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.9393994639108 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.489584375380449, dt = 0.003961660609789877
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 435.31 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.4%)
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.7194e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.70386370224126 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4935460359902388, dt = 0.003961660610784838
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1512.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 422.36 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.5%)
Info: cfl dt = 0.003961660611799673                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8813e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.22677946663019 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4975076966010237, dt = 0.003961660611799673
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 359.47 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.6%)
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    | 5.0728e+05 | 65536 |      2 | 1.292e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.39480361900775 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5014693572128233, dt = 0.003961660612834685
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 402.46 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.3%)
Info: cfl dt = 0.003961660613890177                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9112e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.87820454747194 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.505431017825658, dt = 0.003961660613890177
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 397.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.7%)
Info: cfl dt = 0.003961660614966461                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9092e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.83329487572018 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5093926784395482, dt = 0.003961660614966461
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 371.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (63.5%)
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.9540e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.80889399697557 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5133543390545146, dt = 0.003961660616063848
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 382.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.5%)
Info: cfl dt = 0.003961660617182651                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8892e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.39890352584251 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5173159996705785, dt = 0.003961660617182651
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1402.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 370.56 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.3%)
Info: cfl dt = 0.003961660618323189                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8602e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.76748893060586 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5212776602877611, dt = 0.003961660618323189
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 385.53 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.9%)
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.9326e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.34250196624399 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5252393209060844, dt = 0.003961660619485783
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 470.37 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.6%)
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.9441e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.5936368032421 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5292009815255703, dt = 0.003961660620670753
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 408.51 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.9%)
Info: cfl dt = 0.003961660621878431                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8060e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.58882547299206 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.533162642146241, dt = 0.003961660621878431
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 1192.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 537.30 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.58 us   (94.2%)
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.6945e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.1615747350584 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5371243027681194, dt = 0.003961660623109145
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 415.67 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.2%)
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    | 5.1137e+05 | 65536 |      2 | 1.282e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 111.28563486201229 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5410859633912286, dt = 0.003961660624363226
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 387.02 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.6%)
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.7009e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.30219195231292 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.545047624015592, dt = 0.003961660625641012
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 380.84 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.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.8622e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.81182501035708 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5490092846412329, dt = 0.00396166062694284
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.5%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 368.42 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.3%)
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.8430e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.39334105938856 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5529709452681757, dt = 0.003961660628269055
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 423.49 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.2%)
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.7677e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.75496469222044 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5569326058964448, dt = 0.003961660629620002
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 405.60 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.7%)
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    | 5.0506e+05 | 65536 |      2 | 1.298e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.91178688363361 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5608942665260648, dt = 0.003961660630996026
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 418.67 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.6%)
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.8535e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.62229684296157 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5648559271570608, dt = 0.003961660632397482
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 385.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.2%)
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.8853e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.31490852335072 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5688175877894583, dt = 0.003961660633824723
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 397.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.2%)
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.9054e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.75095889834073 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.572779248423283, dt = 0.0039616606352781076
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 402.36 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.95 us    (87.7%)
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.8074e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.61847389744699 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5767409090585611, dt = 0.003961660636757997
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 427.91 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.5%)
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.9149e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.95752637814415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5807025696953192, dt = 0.003961660638264752
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1594.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 437.48 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.9%)
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.9894e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.57936488552392 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5846642303335838, dt = 0.003961660639798743
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 410.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.1%)
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.9039e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.71833180148775 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5886258909733826, dt = 0.00396166064136034
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1632.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 409.94 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.6%)
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.9231e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.13756396166036 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.592587551614743, dt = 0.003961660642949916
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 405.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.9%)
Info: cfl dt = 0.003961660644567847                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9979e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.76425494633081 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.596549212257693, dt = 0.003961660644567847
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 422.77 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.7%)
Info: cfl dt = 0.003961660646214513                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9852e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.48871326534214 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6005108729022608, dt = 0.003961660646214513
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 1272.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 384.44 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.4%)
Info: cfl dt = 0.003961660647890298                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8393e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.31266523753409 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6044725335484753, dt = 0.003961660647890298
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 17.20 us   (4.0%)
   LB compute        : 390.47 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (63.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    | 4.5762e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.58776059678418 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6084341941963656, dt = 0.003961660649595588
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1322.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 386.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.9%)
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    | 4.8677e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.93043819760338 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6123958548459612, dt = 0.00396166065133077
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 1133.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 380.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.0%)
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    | 4.9017e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.67142316918327 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.616357515497292, dt = 0.00396166065309624
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1473.00 ns (0.4%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 397.96 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.5%)
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    | 4.9628e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.9996770390268 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6203191761503883, dt = 0.003961660654892392
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.79 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.4%)
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.9056e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.75677992747781 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6242808368052808, dt = 0.0039616606567196245
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 1001.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 434.30 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.0%)
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    | 5.0056e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.93121084565024 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6282424974620004, dt = 0.003961660658578341
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 405.59 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.9%)
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.8876e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.36458995927507 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6322041581205788, dt = 0.003961660660468945
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 419.24 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.3%)
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    | 4.8826e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.25633968577789 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6361658187810477, dt = 0.003961660662391847
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 388.62 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.0%)
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    | 4.9116e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.88639529515268 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401274794434395, dt = 0.003961660664347456
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.1%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 445.45 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.0%)
Info: cfl dt = 0.003961660666336191                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8964e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.55587701418025 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.644089140107787, dt = 0.003961660666336191
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 409.11 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.7%)
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.7409e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.17149077894025 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6480508007741232, dt = 0.003961660668358467
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1392.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 377.31 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.5%)
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    | 5.0286e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.43331577418168 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6520124614424818, dt = 0.003961660670414708
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 398.73 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.4%)
Info: cfl dt = 0.003961660672505336                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7993e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.44344870074846 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6559741221128965, dt = 0.003961660672505336
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 403.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.4%)
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.8136e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.7534088466305 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6599357827854018, dt = 0.003961660674630781
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 414.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.3%)
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.9051e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.74417026161605 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6638974434600327, dt = 0.003961660676791472
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 391.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.9%)
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.8076e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.62345122615832 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.667859104136824, dt = 0.0039616606789878465
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 407.12 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.1%)
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.9351e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.39818544652569 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6718207648158119, dt = 0.00396166068122034
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1193.00 ns (0.3%)
   LB compute        : 407.53 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.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    | 5.0374e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.6231723689882 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6757824254970322, dt = 0.003961660683489393
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1382.00 ns (0.2%)
   gen split merge   : 1232.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.1%)
   LB compute        : 588.86 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.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    | 5.0158e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.15482118264794 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6797440861805215, dt = 0.003961660685795451
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 416.29 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.4%)
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    | 5.0407e+05 | 65536 |      2 | 1.300e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.69642287411556 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.683705746866317, dt = 0.003961660688138962
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 381.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.0%)
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.9293e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.2710504978387 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.687667407554456, dt = 0.003961660690520374
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 392.15 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.5%)
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.9788e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.34961855075098 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6916290682449764, dt = 0.003961660692940144
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 391.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.0%)
Info: cfl dt = 0.003961660695398729                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8619e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.80582006618577 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6955907289379166, dt = 0.003961660695398729
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 398.19 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.3%)
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.8103e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.68188493498 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6995523896333153, dt = 0.003961660697896586
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.2%)
   LB compute        : 379.14 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.3%)
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.8516e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.58033409576564 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7035140503312118, dt = 0.003961660700434182
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 400.95 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.1%)
Info: cfl dt = 0.003961660703011983                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8290e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.08867064512636 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.707475711031646, dt = 0.003961660703011983
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 416.48 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1904.00 ns (68.1%)
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.9304e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.29488851966165 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.711437371734658, dt = 0.00396166070563046
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 388.77 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.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.8064e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.59685336863691 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7153990324402886, dt = 0.003961660708290085
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 442.43 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.4%)
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.4370e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.55898748023239 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7193606931485788, dt = 0.003961660710991336
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 381.25 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.2%)
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.9342e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.37921558972681 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.72332235385957, dt = 0.0039616607137346925
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.1%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 454.66 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.9%)
Info: cfl dt = 0.0039616607165206385                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8452e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.44043809115033 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7272840145733048, dt = 0.0039616607165206385
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 396.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.8%)
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.8877e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.36722202299049 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7312456752898255, dt = 0.003961660719349659
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 415.59 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (65.8%)
Info: cfl dt = 0.003961660722222248                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8545e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.64339296701775 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.735207336009175, dt = 0.003961660722222248
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.2%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 430.06 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.1%)
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.8880e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.37298420487168 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7391689967313972, dt = 0.003961660725138894
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 424.74 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.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.8650e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.8724246096939 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7431306574565362, dt = 0.003961660728100096
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 436.73 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.1%)
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.9041e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.7231104794278 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7470923181846363, dt = 0.003961660731106353
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 385.71 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.4%)
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.8427e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.38656994149484 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7510539789157427, dt = 0.003961660734158168
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 385.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.9%)
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.9119e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.89246560612027 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7550156396499008, dt = 0.003961660737256048
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 397.49 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.7%)
Info: cfl dt = 0.003961660740400501                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8527e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.60366802710715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.758977300387157, dt = 0.003961660740400501
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 369.56 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.2%)
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.8505e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.55715406238302 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7629389611275574, dt = 0.003961660743592042
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 427.04 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.2%)
Info: cfl dt = 0.003961660746831186                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9579e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.89380683275319 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7669006218711494, dt = 0.003961660746831186
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 378.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (65.8%)
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.8076e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.6229588082486 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7708622826179805, dt = 0.003961660750118451
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (0.5%)
   patch tree reduce : 1653.00 ns (0.1%)
   gen split merge   : 951.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.1%)
   LB compute        : 1088.44 us (98.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.2%)
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.8720e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.02387807026489 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.774823943368099, dt = 0.003961660753454363
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 379.73 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.1%)
Info: cfl dt = 0.003961660756839445                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9457e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.62831427943098 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7787856041215533, dt = 0.003961660756839445
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 421.27 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.1%)
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    | 5.0175e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.19074983021319 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7827472648783926, dt = 0.003961660760274228
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 436.37 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.4%)
Info: cfl dt = 0.003961660763759244                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9137e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.93157518368025 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7867089256386668, dt = 0.003961660763759244
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1403.00 ns (0.3%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 434.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (70.7%)
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.8641e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.85227734948023 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.790670586402426, dt = 0.003961660767295028
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 375.60 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.0%)
Info: cfl dt = 0.003961660770882121                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7789e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.99826802200609 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.794632247169721, dt = 0.003961660770882121
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 1051.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 428.33 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.2%)
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.9044e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.72941466952737 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.798593907940603, dt = 0.003961660774521062
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 377.35 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 20.80 us   (5.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (64.4%)
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.8339e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.195954629599 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.802555568715124, dt = 0.003961660778212401
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 415.80 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.6%)
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.8422e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.37699671540288 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8065172294933365, dt = 0.003961660781956683
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 386.70 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.7%)
Info: cfl dt = 0.003961660785754463                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8450e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.43813175953584 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.810478890275293, dt = 0.003961660785754463
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 408.23 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.5%)
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.8808e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.21561986581247 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8144405510610475, dt = 0.003961660789606294
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 380.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.0%)
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.8505e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.55762256898042 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8184022118506538, dt = 0.003961660793512737
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 396.46 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.7%)
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.8461e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.46188251740247 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8223638726441664, dt = 0.003961660797474352
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.01 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.1%)
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.9648e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.0448680267532 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8263255334416408, dt = 0.003961660801491705
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 381.16 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.3%)
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.7465e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.29466645123715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8302871942431325, dt = 0.003961660805565364
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 439.62 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.9%)
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.8557e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.66905149494411 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8342488550486977, dt = 0.003961660809695901
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 395.31 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.0%)
Info: cfl dt = 0.003961660813883892                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8500e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.54625689515314 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8382105158583937, dt = 0.003961660813883892
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 466.21 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.4%)
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.8689e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.95629591265751 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8421721766722776, dt = 0.003961660818129914
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 424.69 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.2%)
Info: cfl dt = 0.003961660822434549                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7966e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.38301230838468 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8461338374904075, dt = 0.003961660822434549
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 445.77 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (64.8%)
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.8762e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.1154932670459 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8500954983128421, dt = 0.00396166082679838
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 1092.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 418.18 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (61.4%)
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.8354e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.22884368082575 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8540571591396404, dt = 0.003961660831221997
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 370.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.7%)
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.8553e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.66029206215545 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8580188199708625, dt = 0.003961660835705991
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 388.16 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.6%)
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.8372e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.26779361982913 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8619804808065685, dt = 0.003961660840250955
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 414.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.8%)
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.8693e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.96515233957007 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8659421416468194, dt = 0.003961660844857489
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.5%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 398.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.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.9565e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.86424563254637 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8699038024916768, dt = 0.003961660849526191
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 369.36 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (63.4%)
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    | 4.7441e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.2417483017083 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8738654633412029, dt = 0.003961660854257668
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1423.00 ns (0.2%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 37.23 us   (6.2%)
   LB compute        : 543.27 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (70.9%)
Info: cfl dt = 0.003961660859052525                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7720e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.84920516487377 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8778271241954605, dt = 0.003961660859052525
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 1123.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 400.71 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.0%)
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.8360e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.24028614824901 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.881788785054513, dt = 0.0039616608639113735
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 392.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.3%)
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.6231e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.60780202500723 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8857504459184244, dt = 0.0039616608688348275
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (0.3%)
   patch tree reduce : 1392.00 ns (0.1%)
   gen split merge   : 932.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.1%)
   LB compute        : 1802.17 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (72.2%)
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.7526e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.42646257016716 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8897121067872593, dt = 0.003961660873823503
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 414.59 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.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    | 4.8438e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.41062272753918 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8936737676610829, dt = 0.0039616608788780195
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 377.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.4%)
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.8178e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.8444982163498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8976354285399608, dt = 0.003961660883999003
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 382.99 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.3%)
Info: cfl dt = 0.0039616608891870795                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8382e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.28876206705993 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9015970894239598, dt = 0.0039616608891870795
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1412.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 383.44 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.8%)
Info: cfl dt = 0.003961660894442876                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8711e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.00554865063434 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9055587503131468, dt = 0.003961660894442876
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 418.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.9%)
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.9909e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.61141271679861 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9095204112075896, dt = 0.003961660899767028
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.1%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 432.99 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.0%)
Info: cfl dt = 0.003961660905160171                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8644e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.85952267366494 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9134820721073567, dt = 0.003961660905160171
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.2%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 465.26 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.8%)
Info: cfl dt = 0.003961660910622945                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9049e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.74089457065278 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.917443733012517, dt = 0.003961660910622945
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 397.47 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.5%)
Info: cfl dt = 0.003961660916155992                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9357e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.4117788223219 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.92140539392314, dt = 0.003961660916155992
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 398.81 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.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.9715e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.19091284649907 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9253670548392958, dt = 0.003961660921759955
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.5%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 375.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (63.7%)
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    | 5.0798e+05 | 65536 |      2 | 1.290e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.54617048144655 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9293287157610557, dt = 0.0039616609274354874
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 384.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (65.1%)
Info: cfl dt = 0.0039616609331832395                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8613e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.79207195176659 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9332903766884912, dt = 0.0039616609331832395
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 429.92 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.2%)
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.9144e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.94827142232515 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9372520376216744, dt = 0.003961660939003865
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 451.29 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.5%)
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.9626e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.9962925642568 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9412136985606783, dt = 0.003961660944898022
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 425.71 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.6%)
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    | 5.1508e+05 | 65536 |      2 | 1.272e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.09091611006014 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9451753595055763, dt = 0.003961660950866375
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 412.42 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.3%)
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    | 5.0517e+05 | 65536 |      2 | 1.297e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.93585387929092 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9491370204564427, dt = 0.003961660956909586
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.1%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 457.23 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.0%)
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.9602e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.94374093745262 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9530986814133522, dt = 0.0039616609630283225
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 402.43 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.9%)
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.9482e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.68239463778927 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9570603423763806, dt = 0.003961660969223257
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 374.93 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.1%)
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.9765e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.29931931633767 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9610220033456038, dt = 0.003961660975495063
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 370.69 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.1%)
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.9100e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.85214137095215 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.964983664321099, dt = 0.003961660981844416
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.6%)
   patch tree reduce : 1352.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 356.36 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.0%)
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    | 5.1966e+05 | 65536 |      2 | 1.261e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 113.08805254917938 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9689453253029434, dt = 0.003961660988271998
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.5%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 356.15 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.8%)
Info: cfl dt = 0.003961660994778491                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5922e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.93652919613723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9729069862912154, dt = 0.003961660994778491
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 434.79 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.7%)
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.8185e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.86096547032402 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.976868647285994, dt = 0.003961661001364583
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 420.95 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.6%)
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.9335e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.36410973561553 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9808303082873586, dt = 0.003961661008030961
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 383.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.9%)
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.9224e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.122102463252 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9847919692953895, dt = 0.003961661014778321
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 391.32 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.3%)
Info: cfl dt = 0.0039616610216073565                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8839e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.28392851686866 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9887536303101678, dt = 0.0039616610216073565
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 385.96 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.6%)
Info: cfl dt = 0.0039616610285187655                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8263e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.03109669276903 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9927152913317752, dt = 0.0039616610285187655
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 411.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.8%)
Info: cfl dt = 0.003961661035513251                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9359e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.41632125364376 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9966769523602939, dt = 0.003323047639706145
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 1313.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 463.61 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.5%)
Info: cfl dt = 0.003961661041450512                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8508e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.5474631035293 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 693.400058736 (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.29 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (57.5%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1323.00 ns (0.3%)
   patch tree reduce : 861.00 ns  (0.2%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 791.00 ns  (0.2%)
   LB compute        : 390.87 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (64.3%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1242.00 ns (0.4%)
   patch tree reduce : 441.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 311.00 ns  (0.1%)
   LB compute        : 334.83 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 1854.00 ns (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.3%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1403.00 ns (0.4%)
   patch tree reduce : 361.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 260.00 ns  (0.1%)
   LB compute        : 347.76 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 1854.00 ns (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.82 us    (1.2%)
   patch tree reduce : 1143.00 ns (0.3%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 410.00 ns  (0.1%)
   LB compute        : 390.92 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 2.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.7778e+05 | 65536 |      2 | 1.372e-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 :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 411.13 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.4798e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.49049195235133 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003961660569039922, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 373.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.8369e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.26153064305534 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007923321138079843, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 411.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.8053e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.57413674323254 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011884981707119765, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 384.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.8523e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.59676017019508 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015846642276159686, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 379.97 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.8979e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.58880790341993 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019808302845199608, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 384.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0355e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.58172531554673 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02376996341423953, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1223.00 ns (0.3%)
   LB compute        : 428.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0201e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.24852166915603 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02773162398327945, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 453.39 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 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    | 5.0080e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.98367067642205 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03169328455231937, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 399.97 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.8422e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.37560838432728 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03565494512135929, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 390.95 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8722e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.0301018193403 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03961660569039921, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1422.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 378.31 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.8319e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.15171227568662 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04357826625943913, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 375.71 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8672e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.91931349967284 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047539926828479045, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 386.04 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (63.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7203e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.72306019528529 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051501587397518964, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 373.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (63.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8211e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.91782074701467 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05546324796655888, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 1392.00 ns (0.4%)
   gen split merge   : 1153.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 372.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.8240e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.9800744651837 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0594249085355988, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 396.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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    | 5.0065e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.95196670400554 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06338656910463872, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 428.29 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.9222e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.11680304372405 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06734822967367864, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 362.93 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.8696e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.97344399297998 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07130989024271855, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 407.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.8589e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.73926311322327 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07527155081175847, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 421.75 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8085e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.6424343989994 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07923321138079839, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 407.61 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8631e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.83144985572274 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08319487194983831, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.85 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 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.8371e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.26594589479795 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08715653251887823, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 418.65 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.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.8408e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.34507373962438 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09111819308791815, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 416.10 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (63.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0032e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.8790585065042 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09507985365695806, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 401.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.8903e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.42223468310084 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09904151422599798, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 440.81 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.8563e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.6836611388888 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1030031747950379, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 381.66 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (63.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1745e+05 | 65536 |      2 | 1.267e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 112.60807977041462 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10696483536407782, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1443.00 ns (0.2%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 589.09 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.5197e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.35705024548004 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11092649593311774, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 1073.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 405.46 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.7755e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.92370481818506 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11488815650215765, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1612.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 386.08 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.8811e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.22310333369691 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11884981707119757, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1353.00 ns (0.3%)
   LB compute        : 405.54 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.8408e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.34538499006416 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12281147764023749, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 399.17 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 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.8993e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.61871290579579 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1267731382092774, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 403.66 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.7942e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.33264582249832 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13073479877831734, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1422.00 ns (0.4%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 377.77 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8849e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.30521126243146 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13469645934735727, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 453.64 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.7827e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.08160068832997 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1386581199163972, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 396.79 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.8949e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.52330823531467 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14261978048543714, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 388.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9534e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.79550564415035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14658144105447707, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 403.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (61.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9671e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.09351433174048 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.150543101623517, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 367.68 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.9282e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.24710169219914 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15450476219255693, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 471.54 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.7205e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.72841936210911 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15846642276159686, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 385.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
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.8754e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.09771597231499 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1624280833306368, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 389.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.8114e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.7067799913399 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16638974389967673, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 377.42 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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    | 2.9269e+05 | 65536 |      2 | 2.239e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.694945493905344 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17035140446871666, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 365.30 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8362e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.24612172974473 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1743130650377566, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 384.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.8882e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.37766839858993 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17827472560679652, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.0%)
   patch tree reduce : 1282.00 ns (0.2%)
   gen split merge   : 1142.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 528.79 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.8152e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.78834194429578 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18223638617583646, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 413.78 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (62.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7417e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.18874140178394 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1861980467448764, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 386.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7704e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.81422318295652 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19015970731391632, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 417.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.8121e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.72143005654847 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19412136788295625, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 405.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.8229e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.9563744393503 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19808302845199618, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 411.76 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.8653e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.87882775746336 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20204468902103612, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 419.33 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.8680e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.93829356428569 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20600634959007605, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1021.00 ns (0.2%)
   LB compute        : 397.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.8687e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.95206080525263 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20996801015911598, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 427.92 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.8223e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.94271723311086 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2139296707281559, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 414.99 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.9023e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.68413686460103 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21789133129719584, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 410.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8722e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.02810278776293 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22185299186623578, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 398.40 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8126e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.7320170972066 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2258146524352757, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 403.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.9103e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.85777455974646 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22977631300431564, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (0.9%)
   patch tree reduce : 1703.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 570.96 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 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.9942e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.68324738166258 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23373797357335557, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 381.69 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9021e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.68023782611428 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2376996341423955, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1673.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 559.51 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (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.7764e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.94496718854731 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24166129471143544, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 368.03 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8460e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.45967974935162 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24562295528047537, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 453.90 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.8339e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.19598098618232 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2495846158495153, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 393.40 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.8685e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.9493106913547 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2535462764185552, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 362.90 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (63.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0179e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.20056235959484 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2575079369875951, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 362.13 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (63.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8220e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.93651381575516 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.261469597556635, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 394.29 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.8688e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.95555650525375 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2654312581256749, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 1273.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 370.50 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8781e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.15669470196978 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2693929186947148, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.6%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 377.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.7549e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.47609059460831 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2733545792637547, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 408.33 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8580e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.72018972039633 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27731623983279463, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1313.00 ns (0.3%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 402.67 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8197e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.88740037497207 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28127790040183454, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 455.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8532e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.61620123135495 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28523956097087444, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 426.01 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.8114e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.70503963151843 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28920122153991434, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 384.25 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.4350e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.51418049091562 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29316288210895425, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 402.76 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8100e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.67637045865426 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29712454267799415, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 381.11 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.8605e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.77397719083031 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30108620324703406, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 439.71 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 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.7755e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.92515197706004 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30504786381607396, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 385.13 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9271e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.22472826882678 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30900952438511387, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 394.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.7028e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.34170883235075 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31297118495415377, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 410.39 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.8103e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.68297959034537 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3169328455231937, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (0.5%)
   patch tree reduce : 1533.00 ns (0.1%)
   gen split merge   : 951.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.1%)
   LB compute        : 1016.34 us (98.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.6192e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.52407752748307 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3208945060922336, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 414.13 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.8544e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.64153985620787 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3248561666612735, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1292.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.16 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.8259e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.0208910566055 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3288178272303134, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 378.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.7456e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.2745000286262 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3327794877993533, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 431.47 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 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.8307e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.1261973578206 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3367411483683932, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 419.91 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.7980e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.41520657721432 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3407028089374331, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1652.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 395.02 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8513e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.57362180700257 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.344664469506473, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 447.09 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 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.7301e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.93601322103842 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3486261300755129, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 407.82 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.7761e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.93686022457929 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3525877906445528, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 376.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7729e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.86849980462698 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3565494512135927, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 407.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.7981e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.41600313772487 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3605111117826326, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 410.90 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.8622e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.81229059607301 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3644727723516725, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 415.89 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8963e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.55249425969195 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36843443292071243, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 409.91 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.9046e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.73413460200703 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37239609348975233, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.2%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 456.05 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8543e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.63872524411673 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37635775405879224, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 388.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
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.9017e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.67020745093905 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38031941462783214, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 422.65 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.8771e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.1353322865474 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38428107519687205, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.3%)
   LB compute        : 396.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.8452e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.44066108471324 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38824273576591195, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.6%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 390.07 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8082e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.63679997652027 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39220439633495185, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 414.56 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.8070e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.6095109052885 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39616605690399176, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 425.10 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.8261e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.02492109674904 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40012771747303166, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 435.94 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.8705e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.99253483918163 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40408937804207157, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.4%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 409.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9484e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.6873623758466 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40805103861111147, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1393.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 377.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8152e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.7880139589702 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4120126991801514, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 401.97 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.8945e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.51465649413822 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4159743597491913, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.99 us   (5.6%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 377.12 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.8031e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.52448930795511 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4199360203182312, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 406.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8404e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.33795905612934 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4238976808872711, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 386.46 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.8384e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.29409396340482 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.427859341456311, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 412.58 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.8687e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.95224577796861 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4318210020253509, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 381.35 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.4%)
Info: cfl dt = 0.0039616605690399225                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8274e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.05407172437256 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4357826625943908, dt = 0.0039616605690399225
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 390.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.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.8857e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.32353961869079 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4397443231634307, dt = 0.0039616605690399225
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 414.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.6%)
Info: cfl dt = 0.003961660569039923                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8398e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.32341678244399 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4437059837324706, dt = 0.003961660569039923
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.5%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 993.00 ns  (0.3%)
   LB compute        : 375.15 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.9%)
Info: cfl dt = 0.003961660569039923                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8061e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.59065648575839 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4476676443015105, dt = 0.003961660569039923
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1382.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 371.48 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.3%)
Info: cfl dt = 0.003961660569039923                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8258e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.01883168706911 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4516293048705504, dt = 0.003961660569039923
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.5%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 390.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.9%)
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.8450e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.43605422505603 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4555909654395903, dt = 0.003961660569039924
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 405.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.1%)
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.8031e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.52455059188217 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4595526260086302, dt = 0.003961660569039926
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 429.58 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 20.24 us   (4.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.1%)
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.6703e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.63454676686612 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46351428657767013, dt = 0.003961660569039926
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 424.63 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.5%)
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.5781e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.62933212864971 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46747594714671004, dt = 0.003961660569039928
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 373.82 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 20.74 us   (5.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.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.8250e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.00280183528673 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47143760771574994, dt = 0.003961660569039928
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 405.05 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.8%)
Info: cfl dt = 0.003961660569039929                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7643e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.67992586956575 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47539926828478984, dt = 0.003961660569039929
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 406.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (67.6%)
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.7405e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.1629567346302 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47936092885382975, dt = 0.003961660569039931
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 388.26 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (62.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.8903e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.42286362819361 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48332258942286965, dt = 0.003961660569039933
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 435.88 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.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.6822e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.89449425837185 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4872842499919096, dt = 0.003961660569039935
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 418.67 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.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.8347e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.21263415014201 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4912459105609496, dt = 0.003961660569039937
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 397.71 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.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.8718e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.0201357877821 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49520757112998953, dt = 0.00396166056903994
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.6%)
   patch tree reduce : 1392.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 365.50 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (63.9%)
Info: cfl dt = 0.003961660569039943                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8641e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.85357081668066 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4991692316990295, dt = 0.003961660569039943
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 430.22 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (68.2%)
Info: cfl dt = 0.003961660569039947                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9209e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.08972822417127 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5031308922680694, dt = 0.003961660569039947
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1633.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 379.57 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.5%)
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.7265e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.85859155867051 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5070925528371093, dt = 0.00396166056903995
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 381.87 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.6%)
Info: cfl dt = 0.003961660569039955                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8364e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.25044015144884 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5110542134061492, dt = 0.003961660569039955
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 392.02 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.1%)
Info: cfl dt = 0.00396166056903996                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8345e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.20920514938281 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150158739751891, dt = 0.00396166056903996
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 410.65 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.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.7352e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.04766018369675 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5189775345442291, dt = 0.003961660569039966
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 469.99 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.1%)
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.5958e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.01503137030689 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5229391951132691, dt = 0.003961660569039973
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 413.16 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.6%)
Info: cfl dt = 0.00396166056903998                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8523e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.59683835489129 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5269008556823092, dt = 0.00396166056903998
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 400.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.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.8469e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.47743450990104 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5308625162513492, dt = 0.003961660569039988
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.5%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 389.30 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.0%)
Info: cfl dt = 0.003961660569039999                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7828e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.08322239688704 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5348241768203892, dt = 0.003961660569039999
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.4%)
   patch tree reduce : 1343.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 362.51 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.3%)
Info: cfl dt = 0.003961660569040009                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9327e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.3466954700076 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5387858373894292, dt = 0.003961660569040009
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 385.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.4%)
Info: cfl dt = 0.003961660569040021                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8329e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.17320094623898 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5427474979584692, dt = 0.003961660569040021
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 440.63 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.8%)
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.8862e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.33471075500591 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5467091585275092, dt = 0.003961660569040035
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 372.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.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.8719e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.02241037499442 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5506708190965492, dt = 0.003961660569040051
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 407.16 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.7%)
Info: cfl dt = 0.003961660569040068                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7831e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.08942409422652 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5546324796655893, dt = 0.003961660569040068
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 403.31 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.4%)
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.8369e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.26037852762207 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5585941402346293, dt = 0.003961660569040087
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 384.21 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (65.8%)
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.6931e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.13123369954008 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5625558008036694, dt = 0.003961660569040109
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 436.97 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (63.7%)
Info: cfl dt = 0.003961660569040132                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8081e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.63388895523548 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5665174613727095, dt = 0.003961660569040132
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1313.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 412.39 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.3%)
Info: cfl dt = 0.00396166056904016                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8182e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.85384771200219 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5704791219417497, dt = 0.00396166056904016
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 411.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.5%)
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.8390e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.30757374494713 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5744407825107898, dt = 0.00396166056904019
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 401.59 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.3%)
Info: cfl dt = 0.003961660569040223                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8106e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.68768378440173 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.57840244307983, dt = 0.003961660569040223
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1352.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 355.39 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.4%)
Info: cfl dt = 0.003961660569040259                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4826e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.55070839621443 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5823641036488703, dt = 0.003961660569040259
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 435.03 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.4%)
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.8289e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.0869504747542 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5863257642179105, dt = 0.003961660569040299
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 447.14 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.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.8804e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.2072376310998 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5902874247869508, dt = 0.003961660569040344
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.5%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 355.50 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.0%)
Info: cfl dt = 0.003961660569040394                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8628e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.82462817240724 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5942490853559912, dt = 0.003961660569040394
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 377.41 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.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.8379e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.28269738543297 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5982107459250315, dt = 0.003961660569040448
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 391.80 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.6%)
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.9018e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.67362463604161 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.602172406494072, dt = 0.003961660569040509
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.5%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 371.69 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.3%)
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.8292e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.09342879552467 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6061340670631125, dt = 0.003961660569040575
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 394.31 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.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.8569e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.69717427297223 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.610095727632153, dt = 0.003961660569040648
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 422.84 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.6%)
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.9526e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.77917411708796 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6140573882011937, dt = 0.003961660569040728
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1382.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 368.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.0%)
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.8629e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.82689437831654 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6180190487702344, dt = 0.003961660569040817
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.5%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1073.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 394.97 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.2%)
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.4674e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.22086184679497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6219807093392752, dt = 0.003961660569040913
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 387.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.8%)
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.8289e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.08771008352679 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6259423699083161, dt = 0.003961660569041019
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 379.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.8%)
Info: cfl dt = 0.003961660569041134                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7912e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.26685871148253 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6299040304773571, dt = 0.003961660569041134
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1652.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 395.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.28 us   (93.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.8983e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.59601528315122 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6338656910463982, dt = 0.00396166056904126
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 407.74 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (71.0%)
Info: cfl dt = 0.003961660569041399                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8607e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.77836806754962 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6378273516154395, dt = 0.003961660569041399
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 374.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (65.7%)
Info: cfl dt = 0.00396166056904155                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8914e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.44656169164338 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6417890121844808, dt = 0.00396166056904155
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 409.12 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.9%)
Info: cfl dt = 0.003961660569041714                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8888e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.39009452947944 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6457506727535224, dt = 0.003961660569041714
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1502.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 428.91 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.9%)
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.7792e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.00578472394322 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6497123333225641, dt = 0.003961660569041893
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 442.60 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.0%)
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.7296e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.9266180909161 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.653673993891606, dt = 0.003961660569042087
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 368.59 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.1%)
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.9116e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.8864392380611 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6576356544606481, dt = 0.0039616605690423
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 393.34 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.3%)
Info: cfl dt = 0.00396166056904253                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8086e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.64523456191526 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6615973150296904, dt = 0.00396166056904253
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.3%)
   LB compute        : 397.30 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.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.8556e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.66844938960341 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.665558975598733, dt = 0.00396166056904278
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1323.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 413.46 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.7%)
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.8408e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.34651640098286 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6695206361677758, dt = 0.00396166056904305
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 402.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (68.9%)
Info: cfl dt = 0.003961660569043342                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8597e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.75620559197422 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734822967368188, dt = 0.003961660569043342
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1313.00 ns (0.3%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 390.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.7%)
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.8208e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.91020338889041 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6774439573058622, dt = 0.003961660569043659
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1392.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 378.39 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.1%)
Info: cfl dt = 0.0039616605690440026                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8080e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.63182017130704 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6814056178749058, dt = 0.0039616605690440026
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1412.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 383.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.4%)
Info: cfl dt = 0.003961660569044373                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8717e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.01917270379887 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6853672784439498, dt = 0.003961660569044373
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 409.71 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (63.4%)
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.8716e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.01559557492915 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6893289390129942, dt = 0.003961660569044774
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 383.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.7%)
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.9084e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.816854765165 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.693290599582039, dt = 0.0039616605690452064
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 390.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.4%)
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.8731e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.04837879583525 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6972522601510842, dt = 0.003961660569045673
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 387.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.0%)
Info: cfl dt = 0.003961660569046174                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9146e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.95200139144619 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7012139207201299, dt = 0.003961660569046174
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.1%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 457.88 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.9%)
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.8879e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.37062697008672 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.705175581289176, dt = 0.003961660569046716
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.4%)
   patch tree reduce : 1392.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 368.11 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.7%)
Info: cfl dt = 0.003961660569047297                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8388e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.30319698597137 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7091372418582227, dt = 0.003961660569047297
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 438.15 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.5%)
Info: cfl dt = 0.003961660569047923                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8744e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.0768759133099 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.71309890242727, dt = 0.003961660569047923
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1073.00 ns (0.3%)
   LB compute        : 398.97 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.9%)
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.8454e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.44509683443249 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7170605629963179, dt = 0.003961660569048595
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.5%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 375.95 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.7%)
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.8800e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.19813500817185 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7210222235653665, dt = 0.003961660569049316
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 390.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.7%)
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.9599e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.93719323630341 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7249838841344158, dt = 0.0039616605690500906
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.5%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 373.38 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (62.7%)
Info: cfl dt = 0.00396166056905092                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0576e+05 | 65536 |      2 | 1.296e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.06389935032429 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.728945544703466, dt = 0.00396166056905092
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 387.58 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (63.5%)
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.9042e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.7244734402158 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7329072052725168, dt = 0.00396166056905181
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 377.76 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.0%)
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.9112e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.87684339204208 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7368688658415686, dt = 0.003961660569052762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 1051.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 435.79 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.5%)
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.8072e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.61402893590895 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7408305264106214, dt = 0.003961660569053781
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 367.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (64.8%)
Info: cfl dt = 0.003961660569054871                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9817e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.41158553414458 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7447921869796752, dt = 0.003961660569054871
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 384.74 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (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.9213e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.09821306932825 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7487538475487301, dt = 0.0039616605690560355
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 389.70 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.5%)
Info: cfl dt = 0.003961660569057279                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9360e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.41738642478134 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7527155081177861, dt = 0.003961660569057279
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1323.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 374.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.5%)
Info: cfl dt = 0.003961660569058607                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9664e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.0789974312913 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7566771686868434, dt = 0.003961660569058607
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 397.29 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.9%)
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.9872e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.53255006386235 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.760638829255902, dt = 0.003961660569060024
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 397.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.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.9845e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.47294529922796 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.764600489824962, dt = 0.0039616605690615345
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 406.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.5%)
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.8928e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.47665957867522 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7685621503940235, dt = 0.0039616605690631435
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 385.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.0%)
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.8617e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.80055474699982 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7725238109630866, dt = 0.003961660569064857
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 394.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.0%)
Info: cfl dt = 0.003961660569066682                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0048e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.91403111513772 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7764854715321515, dt = 0.003961660569066682
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 419.35 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.2%)
Info: cfl dt = 0.0039616605690686235                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0312e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.48924905306512 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7804471321012182, dt = 0.0039616605690686235
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 398.90 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.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.8811e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.22347042880641 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7844087926702868, dt = 0.003961660569070687
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 388.31 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (10.7%)
Info: cfl dt = 0.0039616605690728805                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9344e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.38333991865682 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7883704532393575, dt = 0.0039616605690728805
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.5%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 389.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (62.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.8954e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.53437496650156 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7923321138084304, dt = 0.0039616605690752085
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.1%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 435.08 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.9%)
Info: cfl dt = 0.003961660569077681                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9175e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.01477969778949 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7962937743775056, dt = 0.003961660569077681
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 1283.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 366.79 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.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.8276e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.05935029052434 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8002554349465832, dt = 0.003961660569080304
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 393.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.8%)
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.9261e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.20227070640823 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8042170955156636, dt = 0.003961660569083086
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 395.78 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (22.0%)
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.9089e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.82689993790899 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8081787560847467, dt = 0.003961660569086034
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 375.60 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.8%)
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.9134e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.92588600745641 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8121404166538326, dt = 0.003961660569089157
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 377.44 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (63.3%)
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.8465e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.46922870409576 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8161020772229218, dt = 0.003961660569092464
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 396.49 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.8%)
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.9677e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.10804496808025 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8200637377920142, dt = 0.003961660569095964
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 390.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.3%)
Info: cfl dt = 0.003961660569099666                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0143e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.12244666601964 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8240253983611102, dt = 0.003961660569099666
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 406.86 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.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.8562e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.68074169854376 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8279870589302099, dt = 0.003961660569103581
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.5%)
   patch tree reduce : 1593.00 ns (0.1%)
   gen split merge   : 822.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.1%)
   LB compute        : 1109.01 us (98.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.0%)
Info: cfl dt = 0.003961660569107718                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8472e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.4844276156888 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8319487194993135, dt = 0.003961660569107718
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (0.3%)
   patch tree reduce : 1653.00 ns (0.1%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 1673.50 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.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.7834e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.09631565324139 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8359103800684212, dt = 0.003961660569112089
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 374.06 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.2%)
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.6998e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.27699365273908 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8398720406375333, dt = 0.003961660569116703
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 404.48 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.7%)
Info: cfl dt = 0.003961660569121574                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9107e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.86602009767736 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.84383370120665, dt = 0.003961660569121574
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 382.67 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (63.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.8910e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.43779293499043 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8477953617757716, dt = 0.003961660569126712
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 1333.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 442.03 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.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.9685e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.12445910759311 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8517570223448984, dt = 0.00396166056913213
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 404.31 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.9%)
Info: cfl dt = 0.003961660569137841                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9375e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.44917892657884 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8557186829140305, dt = 0.003961660569137841
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 370.66 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.6%)
Info: cfl dt = 0.0039616605691438584                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8407e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.34278377366329 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8596803434831684, dt = 0.0039616605691438584
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 402.32 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.6%)
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.8900e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.41687386601546 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8636420040523122, dt = 0.0039616605691501945
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.3%)
   LB compute        : 420.69 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.5%)
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.8815e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.23052404018782 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8676036646214623, dt = 0.003961660569156865
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 401.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.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.9170e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.00430818648226 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8715653251906191, dt = 0.003961660569163886
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.5%)
   patch tree reduce : 1253.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 356.62 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (63.5%)
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.8259e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.02246174111684 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.875526985759783, dt = 0.00396166056917127
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1563.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.3%)
   LB compute        : 378.48 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.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    | 4.5536e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.0960790077854 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8794886463289543, dt = 0.003961660569179033
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 411.70 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.53 us    (66.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    | 4.9309e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.30550378423666 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8834503068981333, dt = 0.0039616605691871936
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 431.79 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.8%)
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    | 4.8314e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.14055267829121 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8874119674673205, dt = 0.003961660569195767
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 403.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.2%)
Info: cfl dt = 0.00396166056920477                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9106e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.86581350549152 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913736280365163, dt = 0.00396166056920477
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 430.93 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (63.8%)
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    | 4.8414e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.35819532360311 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8953352886057211, dt = 0.003961660569214222
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 414.53 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.3%)
Info: cfl dt = 0.0039616605692241414                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9444e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.60016998749002 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8992969491749353, dt = 0.0039616605692241414
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.26 us   (4.9%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 397.58 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.6%)
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.8732e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.05095583911466 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9032586097441594, dt = 0.003961660569234548
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 408.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.9%)
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.8984e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.59921737610557 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9072202703133939, dt = 0.00396166056924546
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 406.35 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.5%)
Info: cfl dt = 0.0039616605692569                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9009e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.65256891289589 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9111819308826393, dt = 0.0039616605692569
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 401.95 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.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.8410e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.34917617382402 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9151435914518963, dt = 0.003961660569268886
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1783.00 ns (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 357.17 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (64.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.9352e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.40073252027034 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9191052520211651, dt = 0.003961660569281443
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.0%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 497.92 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.4%)
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.9184e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.03508303076745 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9230669125904466, dt = 0.003961660569294593
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 1353.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 386.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.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.8254e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.01160018045158 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9270285731597412, dt = 0.003961660569308358
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 381.58 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.6%)
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.7935e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.3153613252118 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9309902337290495, dt = 0.003961660569322762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 381.75 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.3%)
Info: cfl dt = 0.00396166056933783                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8616e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.79756135549883 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9349518942983723, dt = 0.00396166056933783
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.5%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 367.54 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.1%)
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.8047e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.55981302735448 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9389135548677101, dt = 0.003961660569353588
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 391.24 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.2%)
Info: cfl dt = 0.003961660569370062                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9771e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.31273784191191 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9428752154370637, dt = 0.003961660569370062
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 424.63 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.2%)
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.9142e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.94369287227006 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9468368760064337, dt = 0.003961660569387279
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 407.34 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.1%)
Info: cfl dt = 0.003961660569405266                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9719e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.19919423259478 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.950798536575821, dt = 0.003961660569405266
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 417.13 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.6%)
Info: cfl dt = 0.003961660569424051                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9835e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.45086326441307 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9547601971452263, dt = 0.003961660569424051
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 405.74 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (62.9%)
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.9740e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.2439675994582 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9587218577146503, dt = 0.003961660569443664
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 412.57 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.6%)
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.8930e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.48249549240349 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.962683518284094, dt = 0.003961660569464135
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1422.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 385.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.4%)
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.9544e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.81774544076885 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9666451788535582, dt = 0.003961660569485497
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 367.68 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.7%)
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.9671e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.09407963333713 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9706068394230437, dt = 0.003961660569507778
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 397.30 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.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    | 4.9285e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.25333209270622 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9745684999925515, dt = 0.003961660569531014
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 411.75 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.6%)
Info: cfl dt = 0.003961660569555238                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9389e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.48086633262373 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9785301605620825, dt = 0.003961660569555238
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 389.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.2%)
Info: cfl dt = 0.003961660569580483                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9270e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.22159974706773 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9824918211316378, dt = 0.003961660569580483
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 20.08 us   (93.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.9229e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.1329746901356 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9864534817012183, dt = 0.003961660569606787
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 1183.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.28 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.8%)
Info: cfl dt = 0.003961660569634182                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8767e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.12679084833262 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.990415142270825, dt = 0.003961660569634182
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 385.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (63.2%)
Info: cfl dt = 0.003961660569662711                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8829e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.26155918985872 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9943768028404593, dt = 0.003961660569662711
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 387.25 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.2%)
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.9400e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.50470573730595 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.998338463410122, dt = 0.00396166056969241
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 382.93 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.0%)
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.9222e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.11641608989491 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0023001239798144, dt = 0.003961660569723318
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 1133.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 375.15 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.2%)
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.8642e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.85489310694501 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0062617845495376, dt = 0.003961660569755474
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 371.92 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.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.9106e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.8641247620998 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.010223445119293, dt = 0.003961660569788922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.2%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 415.69 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.1%)
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.8253e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.00773508282182 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.014185105689082, dt = 0.0039616605698237035
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 383.94 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.1%)
Info: cfl dt = 0.003961660569859862                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9268e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.21712532240801 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0181467662589057, dt = 0.003961660569859862
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 382.49 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.4%)
Info: cfl dt = 0.003961660569897443                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9137e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.93284722696468 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0221084268287655, dt = 0.003961660569897443
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 422.10 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.9%)
Info: cfl dt = 0.003961660569936492                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9496e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.71386738823132 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.026070087398663, dt = 0.003961660569936492
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1402.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 380.33 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.8%)
Info: cfl dt = 0.003961660569977054                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7555e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.48916372580784 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0300317479685994, dt = 0.003961660569977054
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.7%)
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    | 5.0980e+05 | 65536 |      2 | 1.286e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 110.94279296256461 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0339934085385765, dt = 0.003961660570019179
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1353.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 366.61 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (62.1%)
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.8402e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.33174307958265 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0379550691085957, dt = 0.003961660570062916
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 397.45 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.1%)
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.8076e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.62396954255622 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0419167296786587, dt = 0.0039616605701083135
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 384.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (63.3%)
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.8250e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.00118229503245 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.045878390248767, dt = 0.003961660570155426
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 409.69 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.9%)
Info: cfl dt = 0.003961660570204304                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8714e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.01071615648416 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0498400508189223, dt = 0.003961660570204304
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 1372.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 384.92 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.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    | 4.8647e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.86650507662661 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0538017113891265, dt = 0.003961660570255002
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1472.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 391.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (65.9%)
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.9519e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.76341103560235 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0577633719593815, dt = 0.003961660570307575
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.5%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 384.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (62.9%)
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.8764e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.12009055972445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0617250325296892, dt = 0.003961660570362079
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1292.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 419.20 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (66.8%)
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.7483e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.33372523676306 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0656866931000513, dt = 0.003961660570418575
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 415.04 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.0%)
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.7933e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.31185173530638 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0696483536704697, dt = 0.0039616605704771175
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 402.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.3%)
Info: cfl dt = 0.0039616605705377695                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8860e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.32879357233939 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0736100142409468, dt = 0.0039616605705377695
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 409.53 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.8%)
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.8636e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.8421266883075 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0775716748114845, dt = 0.003961660570600592
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 414.75 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.9%)
Info: cfl dt = 0.003961660570665648                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8133e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.74836215792159 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.081533335382085, dt = 0.003961660570665648
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.2%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 448.72 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.8%)
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.8768e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.13011410081106 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0854949959527507, dt = 0.003961660570733003
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 401.87 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.5%)
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.8602e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.76743513729984 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0894566565234838, dt = 0.003961660570802721
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 414.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.3%)
Info: cfl dt = 0.003961660570874871                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8226e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.94976013615052 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0934183170942866, dt = 0.003961660570874871
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 394.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (69.2%)
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.9302e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.29074822788343 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0973799776651614, dt = 0.00396166057094952
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 381.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.6%)
Info: cfl dt = 0.0039616605710267394                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8826e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.25531686545938 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.101341638236111, dt = 0.0039616605710267394
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 436.27 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.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.6707e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.64452684607532 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1053032988071376, dt = 0.003961660571106599
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1282.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 385.35 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (65.2%)
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    | 5.0180e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 109.20145707512258 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1092649593782442, dt = 0.003961660571189175
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1423.00 ns (0.3%)
   LB compute        : 392.16 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.9%)
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.8743e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.07393476400601 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1132266199494334, dt = 0.003961660571274538
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 394.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.6%)
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.8309e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.13134993806023 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1171882805207078, dt = 0.003961660571362767
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 387.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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    | 4.9925e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.64809924197121 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1211499410920707, dt = 0.003961660571453938
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 418.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.0%)
Info: cfl dt = 0.0039616605715481305                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8132e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.746119620959 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1251116016635245, dt = 0.0039616605715481305
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 383.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.9%)
Info: cfl dt = 0.003961660571645427                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8704e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.99058140154403 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1290732622350728, dt = 0.003961660571645427
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 381.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.9%)
Info: cfl dt = 0.003961660571745906                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9415e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.53704380832717 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1330349228067182, dt = 0.003961660571745906
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 398.57 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.9%)
Info: cfl dt = 0.003961660571849656                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9168e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.99856994627213 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.136996583378464, dt = 0.003961660571849656
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 399.28 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.5%)
Info: cfl dt = 0.0039616605719567585                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8641e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.85182362635607 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1409582439503136, dt = 0.0039616605719567585
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 402.87 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.1%)
Info: cfl dt = 0.003961660572067303                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4467e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.77000574551134 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1449199045222704, dt = 0.003961660572067303
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.3%)
   LB compute        : 418.95 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (65.4%)
Info: cfl dt = 0.003961660572181378                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7907e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.25553334749644 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1488815650943378, dt = 0.003961660572181378
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 374.65 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.9%)
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.6171e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.47836822775379 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.152843225666519, dt = 0.003961660572299072
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 415.02 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.1%)
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    | 3.7004e+05 | 65536 |      2 | 1.771e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.52920780439702 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.156804886238818, dt = 0.003961660572420481
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 430.65 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.6%)
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.1576e+05 | 65536 |      2 | 1.576e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.47759103641994 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1607665468112385, dt = 0.003961660572545696
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 396.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.0%)
Info: cfl dt = 0.0039616605726748135                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6277e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.70874407497217 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1647282073837841, dt = 0.0039616605726748135
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 384.82 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.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    | 4.1853e+05 | 65536 |      2 | 1.566e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.08009970412031 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.168689867956459, dt = 0.003961660572807932
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 392.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.0%)
Info: cfl dt = 0.003961660572945149                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5014e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.95904510313198 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.172651528529267, dt = 0.003961660572945149
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 412.48 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.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    | 4.8164e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.81533627113052 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.176613189102212, dt = 0.003961660573086567
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1403.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 385.92 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.3%)
Info: cfl dt = 0.003961660573232288                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7625e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.64097257843744 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1805748496752986, dt = 0.003961660573232288
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 402.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.3%)
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.7941e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.3286451863363 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1845365102485308, dt = 0.003961660573382417
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 404.80 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.2%)
Info: cfl dt = 0.0039616605735370595                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6640e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.49775651807005 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1884981708219131, dt = 0.0039616605735370595
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 384.17 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.3%)
Info: cfl dt = 0.0039616605736963245                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7685e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.7725835303708 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1924598313954502, dt = 0.0039616605736963245
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1033.00 ns (0.2%)
   LB compute        : 440.16 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.8%)
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.8285e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.07870246528238 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1964214919691465, dt = 0.0039616605738603235
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 390.55 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (65.5%)
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.6305e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.76930484742198 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2003831525430069, dt = 0.003961660574029167
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 418.16 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.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    | 4.7637e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.66706236288462 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.204344813117036, dt = 0.0039616605742029696
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 415.83 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.3%)
Info: cfl dt = 0.003961660574381847                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6446e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.07648154261156 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.208306473691239, dt = 0.003961660574381847
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 423.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.9%)
Info: cfl dt = 0.003961660574565919                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7912e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.26621473196185 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2122681342656207, dt = 0.003961660574565919
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 446.23 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.1%)
Info: cfl dt = 0.003961660574755303                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8264e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.03275096948543 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2162297948401866, dt = 0.003961660574755303
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 388.40 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.9%)
Info: cfl dt = 0.003961660574950122                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7894e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.22651038999001 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2201914554149418, dt = 0.003961660574950122
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 1183.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 379.87 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (63.5%)
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.7929e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.30321385682713 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.224153115989892, dt = 0.0039616605751505
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.8%)
   patch tree reduce : 1572.00 ns (0.2%)
   gen split merge   : 1042.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.1%)
   LB compute        : 721.98 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.7%)
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.7973e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.39889138880868 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2281147765650424, dt = 0.003961660575356562
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 410.44 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.0%)
Info: cfl dt = 0.003961660575568439                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7686e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.77361954030737 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.232076437140399, dt = 0.003961660575568439
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 364.82 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.7%)
Info: cfl dt = 0.003961660575786258                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7205e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.727869752662 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2360380977159673, dt = 0.003961660575786258
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 390.48 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.3%)
Info: cfl dt = 0.0039616605760101516                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8144e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.77133424876179 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2399997582917535, dt = 0.0039616605760101516
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 407.67 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.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.8261e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.02476196108132 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2439614188677637, dt = 0.003961660576240255
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 410.27 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.0%)
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.7841e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.11089740530466 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.247923079444004, dt = 0.003961660576476705
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 429.42 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.2%)
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.7818e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.06094238510728 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2518847400204807, dt = 0.003961660576719638
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 383.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.3%)
Info: cfl dt = 0.003961660576969195                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7811e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.04754073965537 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2558464005972003, dt = 0.003961660576969195
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 391.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (67.7%)
Info: cfl dt = 0.0039616605772255205                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8958e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.54186649900453 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2598080611741695, dt = 0.0039616605772255205
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1553.00 ns (0.4%)
   gen split merge   : 1103.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 388.56 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.1%)
Info: cfl dt = 0.003961660577488759                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8119e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.71602876157594 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.263769721751395, dt = 0.003961660577488759
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 404.73 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.9%)
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.7433e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.22453607538081 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2677313823288838, dt = 0.003961660577759057
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 364.05 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.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    | 4.7610e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.60832552170694 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2716930429066429, dt = 0.0039616605780365645
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 411.77 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.1%)
Info: cfl dt = 0.003961660578321431                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7783e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.98635369811448 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2756547034846795, dt = 0.003961660578321431
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (0.3%)
   patch tree reduce : 1333.00 ns (0.1%)
   gen split merge   : 842.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 1665.09 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (70.3%)
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.7090e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.47750993119503 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.279616364063001, dt = 0.003961660578613814
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 383.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.8%)
Info: cfl dt = 0.003961660578913866                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8199e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.89003417683031 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2835780246416149, dt = 0.003961660578913866
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 409.71 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.8%)
Info: cfl dt = 0.0039616605792217475                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8145e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.77266818848982 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2875396852205288, dt = 0.0039616605792217475
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 391.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.0%)
Info: cfl dt = 0.00396166057953762                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7827e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.08130244542826 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2915013457997504, dt = 0.00396166057953762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1573.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 393.50 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.5%)
Info: cfl dt = 0.003961660579861644                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7680e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.76179716651306 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.295463006379288, dt = 0.003961660579861644
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 409.96 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.8%)
Info: cfl dt = 0.003961660580193986                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7912e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.26550444763691 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2994246669591496, dt = 0.003961660580193986
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 391.11 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.4%)
Info: cfl dt = 0.003961660580534814                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7557e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.49396653048709 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3033863275393436, dt = 0.003961660580534814
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 391.37 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.2%)
Info: cfl dt = 0.003961660580884298                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7997e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.45153995455752 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3073479881198784, dt = 0.003961660580884298
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 393.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.1%)
Info: cfl dt = 0.00396166058124261                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4502e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.84648030295591 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3113096487007627, dt = 0.00396166058124261
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 1333.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 385.65 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.9%)
Info: cfl dt = 0.003961660581609925                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8210e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.9155064185069 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3152713092820054, dt = 0.003961660581609925
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 398.87 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.1%)
Info: cfl dt = 0.00396166058198642                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6771e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.78350636208005 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3192329698636154, dt = 0.00396166058198642
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 422.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.4%)
Info: cfl dt = 0.003961660582372274                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6794e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.83228925314913 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3231946304456017, dt = 0.003961660582372274
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 393.61 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.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.7520e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.41238028597495 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.327156291027974, dt = 0.0039616605827676715
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 437.17 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.4%)
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.7625e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.64256276202764 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3311179516107416, dt = 0.003961660583172795
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 435.77 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.9%)
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.8768e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.12945735603704 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3350796121939144, dt = 0.003961660583587831
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 363.53 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.0%)
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    | 4.8773e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.14043767046306 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3390412727775023, dt = 0.003961660584012971
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 446.02 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.2%)
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.8729e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.04374904299084 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3430029333615152, dt = 0.003961660584448405
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.38 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (63.4%)
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.9619e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.98060664732313 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3469645939459636, dt = 0.003961660584894329
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1393.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 378.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.1%)
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.8797e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.19213456554806 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3509262545308578, dt = 0.003961660585350938
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.7%)
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.8010e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.47980378383895 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3548879151162088, dt = 0.003961660585818434
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (0.8%)
   patch tree reduce : 1443.00 ns (0.2%)
   gen split merge   : 872.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.1%)
   LB compute        : 736.52 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.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.8314e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.14079185267428 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3588495757020271, dt = 0.003961660586297019
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 416.93 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.8%)
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.7585e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.55487176224268 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3628112362883242, dt = 0.003961660586786895
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 437.80 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.3%)
Info: cfl dt = 0.0039616605872882715                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8369e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.26024615401573 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3667728968751112, dt = 0.0039616605872882715
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 386.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (67.4%)
Info: cfl dt = 0.003961660587801358                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9101e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.85370319704177 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3707345574623995, dt = 0.003961660587801358
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 446.02 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.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    | 4.8643e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.8572137347332 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.374696218050201, dt = 0.003961660588326366
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 418.31 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.3%)
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    | 4.8253e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.00860846589296 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3786578786385273, dt = 0.003961660588863512
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 400.03 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.7%)
Info: cfl dt = 0.003961660589413012                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7983e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.42039566362153 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3826195392273908, dt = 0.003961660589413012
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 384.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.1%)
Info: cfl dt = 0.003961660589975088                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8048e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.5619047924261 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3865811998168038, dt = 0.003961660589975088
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 384.48 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.1%)
Info: cfl dt = 0.003961660590549964                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8398e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.32313888595861 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3905428604067789, dt = 0.003961660590549964
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 402.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.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    | 4.8188e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.86782010107332 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3945045209973288, dt = 0.003961660591137862
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 436.06 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.3%)
Info: cfl dt = 0.003961660591739015                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8844e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.2944604491867 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3984661815884667, dt = 0.003961660591739015
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 398.47 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (65.0%)
Info: cfl dt = 0.00396166059235365                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8362e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   2.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.24658367243126 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4024278421802057, dt = 0.00396166059235365
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 380.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.8%)
Info: cfl dt = 0.0039616605929820034                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8642e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.85554503897704 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4063895027725593, dt = 0.0039616605929820034
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 383.60 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.8%)
Info: cfl dt = 0.003961660593624311                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7774e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.96673985562562 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4103511633655412, dt = 0.003961660593624311
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 410.88 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.0%)
Info: cfl dt = 0.003961660594280812                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8001e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.45975606322553 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4143128239591656, dt = 0.003961660594280812
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 405.77 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.5%)
Info: cfl dt = 0.003961660594951749                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8541e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.63473078705337 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4182744845534463, dt = 0.003961660594951749
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 1103.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 385.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.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    | 4.8684e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.94570276511128 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.422236145148398, dt = 0.0039616605956373655
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 394.93 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.5%)
Info: cfl dt = 0.003961660596337911                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7590e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.56599458508131 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4261978057440354, dt = 0.003961660596337911
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 407.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.9%)
Info: cfl dt = 0.0039616605970536345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7830e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.08795332275413 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4301594663403734, dt = 0.0039616605970536345
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1223.00 ns (0.3%)
   LB compute        : 444.25 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (66.7%)
Info: cfl dt = 0.00396166059778479                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9582e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.89961880321982 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.434121126937427, dt = 0.00396166059778479
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 430.88 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.0%)
Info: cfl dt = 0.003961660598531633                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9679e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.11172942142149 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4380827875352118, dt = 0.003961660598531633
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 434.84 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.7%)
Info: cfl dt = 0.003961660599294423                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8104e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.68474074297505 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4420444481337433, dt = 0.003961660599294423
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 412.83 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.3%)
Info: cfl dt = 0.003961660600073421                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8619e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.80567078060291 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4460061087330378, dt = 0.003961660600073421
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.8%)
   patch tree reduce : 1402.00 ns (0.2%)
   gen split merge   : 962.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.2%)
   LB compute        : 703.72 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.5%)
Info: cfl dt = 0.0039616606008688925                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8352e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.22320124132813 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4499677693331112, dt = 0.0039616606008688925
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 382.30 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.8%)
Info: cfl dt = 0.003961660601681104                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8357e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.23500815275946 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4539294299339802, dt = 0.003961660601681104
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1554.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 410.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.8%)
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.4621e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.10432687828444 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4578910905356612, dt = 0.003961660602510327
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 482.49 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.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.9292e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.2703809300046 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4618527511381716, dt = 0.003961660603356833
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 403.69 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.4%)
Info: cfl dt = 0.003961660604220899                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8265e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.03418430535012 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4658144117415284, dt = 0.003961660604220899
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 444.17 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.4%)
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.6894e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.05144815638063 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4697760723457494, dt = 0.0039616606051028035
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 406.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.8%)
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.7348e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.0400143696325 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.473737732950852, dt = 0.003961660606002829
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 394.31 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.2%)
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.7177e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.66719797810087 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.477699393556855, dt = 0.00396166060692126
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 405.57 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.18 us    (63.8%)
Info: cfl dt = 0.003961660607858385                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7999e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.45513464872302 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4816610541637762, dt = 0.003961660607858385
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 396.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.9%)
Info: cfl dt = 0.003961660608814494                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8047e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.55955417862673 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4856227147716345, dt = 0.003961660608814494
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 1302.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 406.26 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (66.0%)
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.7685e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.7731205547848 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.489584375380449, dt = 0.003961660609789881
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1433.00 ns (0.4%)
   LB compute        : 382.35 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.0%)
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.7990e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.43687353427742 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4935460359902388, dt = 0.003961660610784842
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1582.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 386.47 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.9%)
Info: cfl dt = 0.003961660611799676                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7597e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.58025080538037 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4975076966010237, dt = 0.003961660611799676
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 386.67 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (62.1%)
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.8280e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.06748118826442 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5014693572128233, dt = 0.003961660612834687
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1363.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 363.82 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.1%)
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.8891e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.39777550428124 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.505431017825658, dt = 0.0039616606138901805
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 388.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.7%)
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.8665e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.90583672080164 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5093926784395482, dt = 0.003961660614966465
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 375.23 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.1%)
Info: cfl dt = 0.0039616606160638515                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8180e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.84940574092965 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5133543390545146, dt = 0.0039616606160638515
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1263.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 402.66 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (63.0%)
Info: cfl dt = 0.0039616606171826545                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8537e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.62588932442767 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5173159996705785, dt = 0.0039616606171826545
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1013.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 378.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.4%)
Info: cfl dt = 0.003961660618323192                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8797e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.19296645022777 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5212776602877611, dt = 0.003961660618323192
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 450.18 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.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    | 4.8832e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.26945692419619 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5252393209060844, dt = 0.003961660619485785
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 403.66 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.8%)
Info: cfl dt = 0.0039616606206707575                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9488e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.69644533414125 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5292009815255703, dt = 0.0039616606206707575
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 392.88 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.7%)
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.8840e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.28504980235529 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.533162642146241, dt = 0.003961660621878434
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 384.41 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.2%)
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.7379e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.10577254158352 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5371243027681194, dt = 0.003961660623109147
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1783.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 376.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.5%)
Info: cfl dt = 0.003961660624363228                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8556e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.66820421616282 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5410859633912286, dt = 0.003961660624363228
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 397.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.9%)
Info: cfl dt = 0.003961660625641014                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9849e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.48070418177035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.545047624015592, dt = 0.003961660625641014
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 399.26 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.3%)
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.8866e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.34217871139562 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5490092846412329, dt = 0.003961660626942844
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.0%)
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.8847e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.30072500823054 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5529709452681757, dt = 0.003961660628269058
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 388.60 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.1%)
Info: cfl dt = 0.003961660629620004                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7658e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.71312807436489 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5569326058964448, dt = 0.003961660629620004
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 423.38 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.4%)
Info: cfl dt = 0.0039616606309960285                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8167e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.82142594540196 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5608942665260648, dt = 0.0039616606309960285
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 379.33 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.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    | 4.8443e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.42116077778746 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5648559271570608, dt = 0.003961660632397485
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 406.57 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.9%)
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.8857e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.32390118144465 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5688175877894583, dt = 0.003961660633824726
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 377.53 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.0%)
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.8330e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.17562255272179 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.572779248423283, dt = 0.003961660635278111
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 380.51 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.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.8517e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.58218329556281 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5767409090585611, dt = 0.003961660636757998
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 445.49 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.0%)
Info: cfl dt = 0.003961660638264755                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8670e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.91584559849996 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5807025696953192, dt = 0.003961660638264755
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 437.12 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.9%)
Info: cfl dt = 0.003961660639798747                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8415e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.36036248447262 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.584664230333584, dt = 0.003961660639798747
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 386.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.7%)
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.8474e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.48924969399961 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5886258909733828, dt = 0.003961660641360343
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 401.00 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.4%)
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.8561e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.67868413830882 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5925875516147432, dt = 0.0039616606429499195
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 412.65 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.0%)
Info: cfl dt = 0.00396166064456785                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8615e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.79656582148476 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5965492122576932, dt = 0.00396166064456785
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 368.73 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.0%)
Info: cfl dt = 0.003961660646214517                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7933e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.31264943498553 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.600510872902261, dt = 0.003961660646214517
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (0.3%)
   patch tree reduce : 1703.00 ns (0.1%)
   gen split merge   : 942.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.1%)
   LB compute        : 1683.76 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (64.5%)
Info: cfl dt = 0.003961660647890302                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8126e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.73211988877922 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6044725335484755, dt = 0.003961660647890302
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1502.00 ns (0.3%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 415.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.3%)
Info: cfl dt = 0.0039616606495955905                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8158e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.80091603873898 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6084341941963658, dt = 0.0039616606495955905
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 424.60 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.5%)
Info: cfl dt = 0.0039616606513307746                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8050e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.5660768358017 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6123958548459614, dt = 0.0039616606513307746
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 433.58 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.1%)
Info: cfl dt = 0.003961660653096244                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8015e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.48960731095146 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6163575154972922, dt = 0.003961660653096244
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 428.25 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.5%)
Info: cfl dt = 0.003961660654892396                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9038e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.7174713373249 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6203191761503886, dt = 0.003961660654892396
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 373.40 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.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    | 4.8565e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.68790505180894 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.624280836805281, dt = 0.003961660656719628
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 406.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.4%)
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.8006e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.4712653347866 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6282424974620007, dt = 0.003961660658578344
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 397.64 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.7%)
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.9207e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.08493594669055 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.632204158120579, dt = 0.003961660660468948
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.6%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 386.26 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.4%)
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.8928e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.4770865299145 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.636165818781048, dt = 0.003961660662391849
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1033.00 ns (0.2%)
   LB compute        : 412.74 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (68.1%)
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.8189e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.86909277347588 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401274794434397, dt = 0.00396166066434746
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 402.31 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.8%)
Info: cfl dt = 0.003961660666336194                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8154e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.79258151199815 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6440891401077873, dt = 0.003961660666336194
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 405.90 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.4%)
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    | 4.8451e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.43871097136471 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6480508007741235, dt = 0.003961660668358471
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 432.29 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.0%)
Info: cfl dt = 0.00396166067041471                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7929e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.30295925020475 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.652012461442482, dt = 0.00396166067041471
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 419.51 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.1%)
Info: cfl dt = 0.003961660672505339                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8823e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.2494863407888 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6559741221128967, dt = 0.003961660672505339
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 376.90 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (63.9%)
Info: cfl dt = 0.003961660674630784                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9125e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.90523661738833 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.659935782785402, dt = 0.003961660674630784
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 398.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (62.8%)
Info: cfl dt = 0.003961660676791476                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8891e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.39703342264588 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6638974434600329, dt = 0.003961660676791476
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 392.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.0%)
Info: cfl dt = 0.003961660678987849                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8793e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.18272393636282 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6678591041368243, dt = 0.003961660678987849
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 379.23 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.0%)
Info: cfl dt = 0.003961660681220343                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8340e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.19807738720874 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.671820764815812, dt = 0.003961660681220343
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.17 us   (5.2%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 386.54 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.1%)
Info: cfl dt = 0.003961660683489396                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9032e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.70472668157392 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6757824254970324, dt = 0.003961660683489396
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 419.21 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.0%)
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    | 4.9906e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.60532790551959 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6797440861805217, dt = 0.003961660685795454
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 387.87 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (62.9%)
Info: cfl dt = 0.003961660688138965                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8889e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.39157940830938 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6837057468663172, dt = 0.003961660688138965
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 409.82 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.2%)
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    | 4.8568e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.69494969544418 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6876674075544562, dt = 0.0039616606905203775
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.5%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 375.61 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (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.9291e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.26823235806359 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6916290682449766, dt = 0.003961660692940148
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 385.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.9%)
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.8880e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.3724994571879 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6955907289379168, dt = 0.0039616606953987304
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 382.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.3%)
Info: cfl dt = 0.003961660697896588                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8418e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.36795501683935 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6995523896333156, dt = 0.003961660697896588
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 382.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (64.8%)
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.8902e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.42102395212923 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.703514050331212, dt = 0.003961660700434184
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 417.82 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.7%)
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.9267e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.21404670581573 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7074757110316463, dt = 0.003961660703011986
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 1153.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 412.27 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.0%)
Info: cfl dt = 0.003961660705630462                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8412e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.3550981557456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7114373717346583, dt = 0.003961660705630462
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.74 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.1%)
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.9266e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.21398236817971 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7153990324402888, dt = 0.003961660708290088
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 374.55 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.5%)
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.8733e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.05328357762892 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.719360693148579, dt = 0.003961660710991338
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 404.50 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.3%)
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.9079e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.80511241815755 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7233223538595703, dt = 0.003961660713734695
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.2%)
   patch tree reduce : 1973.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 465.28 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.0%)
Info: cfl dt = 0.00396166071652064                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9173e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.01035371705736 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.727284014573305, dt = 0.00396166071652064
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 392.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (64.8%)
Info: cfl dt = 0.003961660719349663                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8727e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.03988602750431 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7312456752898258, dt = 0.003961660719349663
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 388.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.7%)
Info: cfl dt = 0.00396166072222225                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8773e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.14024224882432 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7352073360091753, dt = 0.00396166072222225
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 412.99 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (63.2%)
Info: cfl dt = 0.0039616607251388965                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8868e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.34680821446663 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7391689967313975, dt = 0.0039616607251388965
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 1173.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 421.86 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.1%)
Info: cfl dt = 0.003961660728100099                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9662e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.07530223145997 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7431306574565364, dt = 0.003961660728100099
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 534.61 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.3%)
Info: cfl dt = 0.003961660731106356                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9101e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.85380866751981 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7470923181846365, dt = 0.003961660731106356
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 435.35 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (68.9%)
Info: cfl dt = 0.003961660734158171                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5512e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.04321439270535 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7510539789157429, dt = 0.003961660734158171
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 396.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.1%)
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.8939e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.50067473654607 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.755015639649901, dt = 0.00396166073725605
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 399.27 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (63.4%)
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.8760e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.11162550591727 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7589773003871572, dt = 0.0039616607404005045
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 443.88 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.0%)
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.8867e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.34533930743561 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7629389611275577, dt = 0.003961660743592044
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 372.23 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.0%)
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.9768e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.30478552974944 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7669006218711496, dt = 0.003961660746831188
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.0%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 547.10 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.3%)
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.9553e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.83795909690176 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7708622826179807, dt = 0.003961660750118454
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 423.60 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (64.8%)
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.9386e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.47507035777922 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7748239433680992, dt = 0.003961660753454365
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 400.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.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.8207e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.90768251709989 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7787856041215535, dt = 0.003961660756839448
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 404.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (66.7%)
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.8879e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.37045033597146 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7827472648783929, dt = 0.00396166076027423
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 395.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.5%)
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.8828e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.25970458124348 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.786708925638667, dt = 0.0039616607637592465
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 431.22 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.9%)
Info: cfl dt = 0.003961660767295031                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7709e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.82549735055882 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7906705864024262, dt = 0.003961660767295031
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1392.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 376.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.9%)
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.8623e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.81459061668845 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7946322471697211, dt = 0.003961660770882123
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 411.84 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (63.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.7818e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.0607910823406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7985939079406033, dt = 0.003961660774521066
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 407.39 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.9%)
Info: cfl dt = 0.003961660778212403                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8363e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.24741258109631 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8025555687151242, dt = 0.003961660778212403
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 432.36 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.2%)
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.8361e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.2430168443732 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8065172294933367, dt = 0.0039616607819566866
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 383.26 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (65.5%)
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.8577e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.71403372296079 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8104788902752933, dt = 0.0039616607857544655
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 414.16 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.2%)
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.8452e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.44180654743042 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8144405510610477, dt = 0.0039616607896062975
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 1292.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 447.75 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.5%)
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    | 4.8704e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.99050295282808 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.818402211850654, dt = 0.003961660793512739
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 390.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (63.1%)
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.8274e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.0535576651144 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8223638726441667, dt = 0.0039616607974743544
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 380.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.5%)
Info: cfl dt = 0.003961660801491708                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8358e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.23725206863358 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.826325533441641, dt = 0.003961660801491708
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 387.42 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.8%)
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    | 4.9260e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.1993068923179 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8302871942431327, dt = 0.003961660805565367
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 422.36 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.9%)
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.9071e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.78943556380034 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.834248855048698, dt = 0.003961660809695905
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1382.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 372.87 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.5%)
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    | 4.6495e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.18234328824184 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.838210515858394, dt = 0.003961660813883895
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 402.45 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (59.7%)
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    | 4.8889e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.39352258971633 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8421721766722778, dt = 0.003961660818129917
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 403.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.4%)
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.8865e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.34117846068925 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8461338374904077, dt = 0.003961660822434551
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 382.35 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.9%)
Info: cfl dt = 0.003961660826798383                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8540e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.63384649691024 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8500954983128424, dt = 0.003961660826798383
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 427.70 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.4%)
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.9968e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 108.7398189714497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8540571591396406, dt = 0.003961660831222
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 376.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.6%)
Info: cfl dt = 0.003961660835705994                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7505e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.38134920875964 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8580188199708627, dt = 0.003961660835705994
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 397.14 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (66.4%)
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.9268e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.21653042076998 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8619804808065687, dt = 0.003961660840250959
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 435.81 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.2%)
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.8800e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.19914182972434 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8659421416468198, dt = 0.003961660844857492
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 390.64 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.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.8929e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.47977128487034 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8699038024916772, dt = 0.003961660849526195
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 417.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.9%)
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.9153e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.96688012143916 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8738654633412033, dt = 0.00396166085425767
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 384.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.2%)
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.8473e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.48741013329742 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.877827124195461, dt = 0.0039616608590525276
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.5%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 375.67 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (63.9%)
Info: cfl dt = 0.003961660863911375                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8945e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.51352515078459 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8817887850545134, dt = 0.003961660863911375
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 391.43 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.7%)
Info: cfl dt = 0.003961660868834829                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8731e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.04822503684146 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.885750445918425, dt = 0.003961660868834829
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1472.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 421.19 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.4%)
Info: cfl dt = 0.0039616608738235045                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8607e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.77980473521878 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8897121067872598, dt = 0.0039616608738235045
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 398.63 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.1%)
Info: cfl dt = 0.003961660878878023                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8486e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.51535567515833 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8936737676610833, dt = 0.003961660878878023
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 412.03 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (63.8%)
Info: cfl dt = 0.003961660883999006                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8391e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.30824836264436 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8976354285399613, dt = 0.003961660883999006
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 381.03 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.5%)
Info: cfl dt = 0.003961660889187081                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9251e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.18119151462224 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9015970894239602, dt = 0.003961660889187081
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 384.50 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (63.9%)
Info: cfl dt = 0.003961660894442879                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8850e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.30785217964393 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9055587503131473, dt = 0.003961660894442879
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 405.77 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.5%)
Info: cfl dt = 0.0039616608997670305                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9117e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.88812226078169 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.90952041120759, dt = 0.0039616608997670305
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 425.07 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.5%)
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    | 2.9646e+05 | 65536 |      2 | 2.211e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.51553898129947 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.913482072107357, dt = 0.003961660905160175
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 380.63 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.6%)
Info: cfl dt = 0.003961660910622948                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8478e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.49741027652368 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9174437330125174, dt = 0.003961660910622948
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 411.42 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.6%)
Info: cfl dt = 0.003961660916155994                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8281e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.06829488314091 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9214053939231404, dt = 0.003961660916155994
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 440.28 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.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    | 4.8647e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.86499058801991 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9253670548392963, dt = 0.003961660921759959
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 398.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.1%)
Info: cfl dt = 0.00396166092743549                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8414e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.35870827359048 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9293287157610561, dt = 0.00396166092743549
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 418.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.2%)
Info: cfl dt = 0.003961660933183242                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7061e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.41409471293733 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9332903766884917, dt = 0.003961660933183242
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 398.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.2%)
Info: cfl dt = 0.003961660939003867                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7428e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.21254661304609 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9372520376216749, dt = 0.003961660939003867
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 425.47 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (70.1%)
Info: cfl dt = 0.003961660944898026                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7855e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.14179787495019 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9412136985606787, dt = 0.003961660944898026
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.4%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 436.73 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.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    | 4.8597e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.75748684397722 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9451753595055767, dt = 0.0039616609508663775
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 418.69 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.8%)
Info: cfl dt = 0.003961660956909588                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7197e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.71010252912116 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.949137020456443, dt = 0.003961660956909588
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 387.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.7%)
Info: cfl dt = 0.003961660963028325                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7296e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.92599901473591 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9530986814133526, dt = 0.003961660963028325
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 404.47 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.3%)
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.7427e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.21127462208455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.957060342376381, dt = 0.0039616609692232595
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 423.29 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.6%)
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.7586e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.55687811043651 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9610220033456043, dt = 0.003961660975495065
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 379.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.4%)
Info: cfl dt = 0.003961660981844419                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7310e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.95679617641667 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9649836643210994, dt = 0.003961660981844419
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 381.11 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.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.9200e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.0682618702452 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9689453253029439, dt = 0.003961660988272
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 395.34 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.3%)
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.8841e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.2870430496767 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9729069862912159, dt = 0.003961660994778494
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 405.12 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.9%)
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.8553e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.66132188579887 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9768686472859944, dt = 0.0039616610013645855
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 422.47 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.1%)
Info: cfl dt = 0.003961661008030965                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9332e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 107.35637142919121 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.980830308287359, dt = 0.003961661008030965
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 395.87 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.2%)
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.8755e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.10193792774432 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.98479196929539, dt = 0.003961661014778324
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 391.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.4%)
Info: cfl dt = 0.003961661021607358                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7765e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.94664027829728 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9887536303101683, dt = 0.003961661021607358
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 401.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (62.9%)
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.7295e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.92422766873398 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9927152913317756, dt = 0.003961661028518768
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 414.39 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.6%)
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.8654e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.88184511135591 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9966769523602943, dt = 0.0033230476397057007
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 407.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.2%)
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.8502e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.53533377834123 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 762.4826715820001 (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.53 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.89 us    (60.3%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1323.00 ns (0.3%)
   patch tree reduce : 962.00 ns  (0.2%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 459.04 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (60.9%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (0.3%)
   patch tree reduce : 361.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 340.00 ns  (0.1%)
   LB compute        : 414.04 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.3%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (0.4%)
   patch tree reduce : 421.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 261.00 ns  (0.1%)
   LB compute        : 338.57 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 2.08 us    (0.6%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=False
Info: time since start : 762.6505518160001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.8%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 395.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.6947e+05 | 65536 |      2 | 1.396e-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.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 396.89 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6758e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.75459849903615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003961660569039922, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 408.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.6688e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.6022667110462 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007923321138079843, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 429.83 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5917e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.92487020234535 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011884981707119765, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 397.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.6469e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.12526706853102 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015846642276159686, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 391.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6874e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.00716791027021 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019808302845199608, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1924.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 414.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
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.7209e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.7364913537062 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02376996341423953, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 402.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.3145e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.89190201535912 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02773162398327945, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 417.90 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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.7306e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.94764900826199 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03169328455231937, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 379.87 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.6222e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.58832729517069 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03565494512135929, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 381.29 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5905e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.89862290456567 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03961660569039921, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 383.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (63.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5784e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.63453552189185 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04357826625943913, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 427.46 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.5732e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.52250163851761 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047539926828479045, dt = 0.0024600731715209573
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 393.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6510e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.85186107565352 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 764.705049787 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.05, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (1.6%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 1093.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 424.50 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 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.6056e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.22660332800143 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05396166056903992, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 383.42 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6505e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.20385548072669 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05792332113807984, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 391.78 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (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.5868e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.81772388086252 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06188498170711976, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.5%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 382.33 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.6104e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.33270627436642 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06584664227615968, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 443.20 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (63.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6464e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.11580167497935 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0698083028451996, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 377.73 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.6755e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.74865011640055 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07376996341423951, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 414.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.6294e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.7463225066382 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07773162398327943, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1813.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 438.95 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.6127e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.38182348672876 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08169328455231935, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 391.42 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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.6399e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.97321098812334 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08565494512135927, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 374.53 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.5331e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.650578425461 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08961660569039918, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1543.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 387.28 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5522e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.06615211562107 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0935782662594391, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 408.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.5911e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.9119926047338 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09753992682847902, dt = 0.002460073171520985
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 437.25 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5877e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.995948188802245 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 766.6253579170001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.1, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.74 us    (1.7%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 443.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 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.6745e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.72736751460205 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10396166056903992, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1173.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 359.31 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7347e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.03579335131816 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10792332113807984, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 403.25 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.7280e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.89071370160138 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11188498170711976, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1472.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 435.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6206e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.55474796387227 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11584664227615968, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 403.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.7026e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.33915689772695 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1198083028451996, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 401.73 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6696e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.62072804789719 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12376996341423951, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1472.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 388.51 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6549e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.30033800529752 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12773162398327945, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 419.50 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.6670e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.56411649599924 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13169328455231938, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 403.38 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6671e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.5663485581969 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1356549451213593, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 414.29 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.4841e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.58272833506639 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13961660569039924, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.6%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 379.95 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6012e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.13172410043171 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14357826625943917, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 391.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
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.6538e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.27599318934385 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1475399268284791, dt = 0.0024600731715209156
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 423.70 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (63.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5802e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.89481450922046 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 768.5289818550001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.15000000000000002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.7%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 993.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 440.85 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.6070e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.25760626704862 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15396166056903995, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1813.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 387.76 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.6251e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.65186863526073 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1579233211380799, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.5%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 383.42 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.5943e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.98098765947755 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16188498170711982, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 423.86 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.6838e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.92809814614442 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16584664227615975, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 379.75 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 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.5588e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.20831854575293 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16980830284519968, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 388.05 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.5867e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.81656419969704 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17376996341423961, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 401.44 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6405e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.98708512221529 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17773162398327955, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 411.69 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.6699e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.62594963648834 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18169328455231948, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 421.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.7267e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.86251892942438 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1856549451213594, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 413.66 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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.7507e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.38400424844771 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18961660569039934, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 438.36 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.6491e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.17377758463428 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19357826625943927, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 386.62 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6189e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.51692609846867 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1975399268284792, dt = 0.0024600731715208046
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 363.38 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.7897e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.7256848506074 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 770.4301404040001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.2, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 1092.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 468.66 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5672e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.39226746721761 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20396166056903994, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 385.92 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6388e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.94975982452098 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20792332113807988, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.86 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.6135e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.398628988113 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2118849817071198, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 387.64 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.7006e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.2941785603345 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21584664227615974, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.6%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 380.71 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6088e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.29659093981368 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21980830284519967, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 387.05 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.7059e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.40897301409342 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2237699634142396, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1472.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 374.65 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.7357e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.05820936745877 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22773162398327954, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 414.16 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 11.93 us   (2.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.7856e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.14529317860655 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23169328455231947, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 438.63 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.6082e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.28446636609583 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2356549451213594, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 432.60 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.6777e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.79541237978667 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23961660569039933, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.6%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 389.14 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6431e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.04410810625102 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24357826625943926, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 385.96 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6359e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.88565781153302 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2475399268284792, dt = 0.0024600731715208046
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 1333.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 368.15 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (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.6367e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.65807528604334 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 772.331254413 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.25, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 440.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.6442e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.06645576524618 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2539616605690399, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 405.00 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6802e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.8511947223069 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2579233211380798, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 385.58 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6707e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.64382918695941 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2618849817071197, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1924.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 417.47 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.5241e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.45445696387122 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2658466422761596, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.3%)
   patch tree reduce : 1663.00 ns (0.1%)
   gen split merge   : 862.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.0%)
   LB compute        : 1827.83 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.6306e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.77081916029513 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2698083028451995, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.45 us   (2.9%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 434.41 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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    | 4.6514e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.22388358244464 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2737699634142394, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 401.90 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (63.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6283e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.7202778504265 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27773162398327933, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.3%)
   LB compute        : 412.66 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.6325e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.81276938082682 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28169328455231923, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 385.60 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (61.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6490e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.17235938613833 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28565494512135914, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 412.56 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.6326e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.81524504542156 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28961660569039904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 434.47 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.3372e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.38606136203158 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29357826625943895, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 382.58 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6668e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.55929034046837 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29753992682847885, dt = 0.002460073171521193
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 400.39 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.5820e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.918684793658876 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 774.2505591800001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.30000000000000004, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (1.5%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 463.63 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5936e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.96670679156722 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30396166056903995, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 373.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.6456e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.09779564887035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30792332113807985, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 1133.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 428.17 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 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.4941e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.80104046658833 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31188498170711976, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.3%)
   patch tree reduce : 1463.00 ns (0.1%)
   gen split merge   : 792.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.1%)
   LB compute        : 1678.52 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.5576e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.18240903693557 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31584664227615966, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.3%)
   LB compute        : 394.00 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.5903e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.89447849226065 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31980830284519957, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 406.13 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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    | 4.5403e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.80651664927504 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32376996341423947, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 414.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.5235e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.43994023152553 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3277316239832794, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 425.47 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.5037e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.01041673618965 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3316932845523193, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1462.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 380.53 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5431e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.868133848441 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3356549451213592, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 439.28 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.6952e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.17709145923159 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3396166056903991, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 410.69 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6381e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.93360935868537 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.343578266259439, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1462.00 ns (0.4%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 396.95 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.6740e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.71544516639513 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3475399268284789, dt = 0.0024600731715211377
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 371.11 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.5711e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.77159915961105 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 776.1812069480001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.35000000000000003, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 463.34 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5743e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.54717794235316 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35396166056903994, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 382.51 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.4413e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.65145398005781 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35792332113807984, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 381.50 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.5800e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.67083100787188 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36188498170711975, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 404.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5566e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.16133348200175 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36584664227615965, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 409.09 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.5704e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.46107141611414 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36980830284519955, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.2%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 438.61 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.5866e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.81307623677192 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37376996341423946, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 407.77 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.4994e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.91714793577617 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37773162398327936, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 387.03 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.5677e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.4014974392625 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38169328455231927, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 386.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 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.5991e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.08569016041425 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38565494512135917, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.6%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 379.01 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.5583e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.19851654478776 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3896166056903991, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 392.06 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.6288e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.73195736185068 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.393578266259439, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 418.26 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.6685e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.59540541689496 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3975399268284789, dt = 0.0024600731715211377
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 410.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.6410e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.71657264660438 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 778.117815361 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.4, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.6%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 433.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (62.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6150e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.43215857133927 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4039616605690399, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 385.82 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.6532e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.2638449413109 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40792332113807983, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1462.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1093.00 ns (0.3%)
   LB compute        : 391.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6408e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.9942928827793 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41188498170711974, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 421.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.7006e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.29425780064466 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41584664227615964, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1512.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 433.35 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 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.6892e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.04648705138646 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41980830284519954, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 463.11 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6999e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.27861902297978 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42376996341423945, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 375.50 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.7090e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.47729688979429 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42773162398327935, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 409.91 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6209e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.55964857559503 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43169328455231926, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 418.70 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.7076e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.44679371422598 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43565494512135916, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 382.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (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.7210e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.7380610549401 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43961660569039906, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (0.7%)
   patch tree reduce : 1643.00 ns (0.2%)
   gen split merge   : 882.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.1%)
   LB compute        : 771.06 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.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.4380e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.58011761436555 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44357826625943897, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 395.88 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7118e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.53794124306457 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4475399268284789, dt = 0.0024600731715211377
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 394.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7219e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.809874547192635 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 780.015529342 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.45, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 426.75 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.5856e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.79167946543959 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4539616605690399, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 1292.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 417.12 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6266e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.68402232500235 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4579233211380798, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 377.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6752e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.74137565411822 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4618849817071197, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 406.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.6339e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.84276203916595 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46584664227615963, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1452.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 392.88 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.6299e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.75547754933362 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46980830284519953, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 368.29 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.6288e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.73309074158928 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47376996341423944, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 380.97 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.6724e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.68094175706919 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47773162398327934, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 410.69 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.6432e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.04599950530968 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48169328455231925, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1472.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 414.25 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (71.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.6564e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.33317668333883 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48565494512135915, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1013.00 ns (0.2%)
   LB compute        : 391.97 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.6586e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.38138245224836 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48961660569039905, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 428.37 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.6701e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.6305836936144 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49357826625943896, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 423.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.5885e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.85466683667879 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49753992682847886, dt = 0.0024600731715211377
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 387.33 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.6500e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.83827904324338 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 781.92163987 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.5, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.20 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1163.00 ns (0.3%)
   LB compute        : 437.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.6698e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.62339634224267 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5039616605690399, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 376.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.6350e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.8669225361474 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5079233211380798, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 406.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5963e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.02541912355363 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5118849817071197, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1663.00 ns (0.3%)
   gen split merge   : 1233.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 564.21 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.3504e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.6728827049219 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5158466422761596, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 407.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.6722e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.67652056781667 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5198083028451995, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 393.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.6025e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.16070366874865 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5237699634142394, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (0.9%)
   patch tree reduce : 1423.00 ns (0.2%)
   gen split merge   : 881.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 569.12 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.6708e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.64570688300512 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5277316239832793, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.3%)
   LB compute        : 433.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.6642e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.50186082792209 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5316932845523192, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 376.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.6442e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.0669843236002 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5356549451213591, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 390.41 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.6069e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.25453492051214 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.539616605690399, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.8%)
   patch tree reduce : 1563.00 ns (0.2%)
   gen split merge   : 772.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 651.02 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.6185e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.50789226749295 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.543578266259439, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 409.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5784e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.63552044146999 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5475399268284789, dt = 0.002460073171521193
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 380.48 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2359e+05 | 65536 |      2 | 1.547e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.24208777373744 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 783.8525936030001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.55, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (1.5%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 473.11 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 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.8028e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.5183513206775 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.55396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 383.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.6274e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.70089077738571 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5579233211380799, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 1163.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 389.07 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.5891e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.86930803357188 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5618849817071198, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 392.96 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.6382e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.93775114678306 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5658466422761597, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 432.54 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.5830e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.73457254099017 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5698083028451996, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.5%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 371.24 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.6670e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.56261862462837 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5737699634142395, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 393.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.8310e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.13211710435331 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5777316239832794, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 410.81 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.6306e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.7716066562562 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5816932845523193, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 384.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.6416e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.01132055587301 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5856549451213592, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 375.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
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.6297e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.75201405291224 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5896166056903991, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 389.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.6379e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.9304778839286 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.593578266259439, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 416.69 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6794e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.8339779904155 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5975399268284789, dt = 0.002460073171521193
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 399.31 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
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    | 4.6105e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.303976106406274 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 785.750707851 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.6000000000000001, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (1.4%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 459.02 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.6873e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.0062603026515 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.60396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 404.71 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6449e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.08231707041219 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6079233211380799, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 423.32 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.5705e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.46339512359498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6118849817071198, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 418.07 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.5558e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.14303393877819 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6158466422761597, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 408.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.4874e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.65429027443334 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6198083028451996, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.70 us   (4.8%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 394.01 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.7119e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.54147553501804 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6237699634142395, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1263.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 390.39 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7886e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.21080737840919 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6277316239832794, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 397.07 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (63.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6735e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.70415368934466 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6316932845523193, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 380.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6632e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.47971808193415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6356549451213592, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 396.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.7517e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.40693942651662 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6396166056903991, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 369.42 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.7568e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.51865057391002 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.643578266259439, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.5%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 376.90 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.7349e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.04108097545675 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6475399268284789, dt = 0.002460073171521082
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 371.77 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.7726e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.49502832457792 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 787.643061037 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.65, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1463.00 ns (0.3%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 399.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.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.6700e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.62963352900394 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6539616605690399, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 420.52 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.6505e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.2046547864934 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6579233211380798, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 382.37 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (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.5988e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.07955606139282 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6618849817071197, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 422.31 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.5904e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.89716535889143 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6658466422761596, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.4%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 430.82 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.6113e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.35093362709036 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6698083028451995, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 383.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.4979e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.88447486932498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6737699634142394, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 397.72 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
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.6184e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.50603300014978 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6777316239832794, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 428.69 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.7105e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.51099382896606 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6816932845523193, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 387.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6578e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.36286820929637 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6856549451213592, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 376.41 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.6904e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.0731491332924 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6896166056903991, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.4%)
   patch tree reduce : 1592.00 ns (0.1%)
   gen split merge   : 852.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1193.00 ns (0.1%)
   LB compute        : 1434.35 us (98.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.5957e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.01185423878628 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.693578266259439, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 372.05 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.5693e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.43775087541867 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6975399268284789, dt = 0.002460073171521193
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1592.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 467.21 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6014e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.18177534231517 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 789.5589500450001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.7000000000000001, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (1.6%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 422.64 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.6374e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.91840024024388 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.70396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 405.59 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.6415e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.00781083330989 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7079233211380799, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.5%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 362.50 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6467e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.1215601399192 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7118849817071198, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 399.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.5621e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.27992462332213 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7158466422761597, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 386.82 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.5263e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.5005288008801 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7198083028451996, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 382.06 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6535e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.26945776863063 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7237699634142395, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 389.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6583e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.37376770064954 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7277316239832794, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1263.00 ns (0.3%)
   LB compute        : 403.37 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6127e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.38160870217203 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7316932845523193, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 365.49 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6836e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.92516907668309 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7356549451213592, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 416.39 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.6888e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.03725577928844 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7396166056903991, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.3%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 382.22 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.6493e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.17730674607162 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.743578266259439, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 399.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.4992e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.91287859399989 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7475399268284789, dt = 0.002460073171521082
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (0.3%)
   patch tree reduce : 1543.00 ns (0.1%)
   gen split merge   : 962.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.0%)
   LB compute        : 1760.04 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.3638e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.97095833590593 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 791.4805571190001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.75, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.19 us    (2.1%)
   patch tree reduce : 4.11 us    (0.9%)
   gen split merge   : 1754.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1643.00 ns (0.4%)
   LB compute        : 413.41 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6262e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.67652120550822 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7539616605690399, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 413.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6575e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.35708727158352 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7579233211380798, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 397.25 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6881e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.02320035285486 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7618849817071197, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 424.92 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6332e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.8283422935597 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7658466422761596, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 380.90 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.6121e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.36875580246743 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7698083028451995, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 416.68 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6345e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.85578085225455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7737699634142394, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 401.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6259e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.6679972707349 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7777316239832793, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 377.50 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 19.64 us   (4.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.6419e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.01785776027481 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7816932845523192, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 419.89 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.6389e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.9520578600703 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7856549451213591, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 402.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6387e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.94701032245088 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.789616605690399, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 391.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.7007e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.29617868201677 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.793578266259439, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 410.91 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6311e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.78255668867637 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7975399268284789, dt = 0.002460073171521193
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 410.83 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.6363e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.65246663776713 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 793.3879128100001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.8, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (1.7%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 410.85 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6359e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.88611454310818 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.80396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 398.44 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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    | 4.5428e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.860308086984 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8079233211380799, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 407.45 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2201e+05 | 65536 |      2 | 1.553e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.83847114547423 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8118849817071198, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 375.67 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.4859e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.62241113204207 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8158466422761597, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.1%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 439.08 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.5969e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.03747201386541 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8198083028451996, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 409.68 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.5615e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.2681551433475 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8237699634142395, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 375.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6187e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.5123059123993 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8277316239832794, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 417.43 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (72.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.5002e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.93416379469276 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8316932845523193, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1472.00 ns (0.3%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 427.62 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.5722e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.50133476930066 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8356549451213592, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 384.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (63.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6669e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.56107957346129 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8396166056903991, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.3%)
   LB compute        : 388.38 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.6621e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.45747456650777 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.843578266259439, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.88 us   (4.9%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 387.42 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
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.6772e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.78450121505858 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8475399268284789, dt = 0.002460073171521193
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 379.75 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6378e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.67312204313378 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 795.3244140490001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.8500000000000001, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 430.94 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6810e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.86855479542935 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.85396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 418.61 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7017e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.31864176524476 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8579233211380799, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.1%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 473.10 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6746e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.72896022630995 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8618849817071198, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.3%)
   patch tree reduce : 1313.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 389.50 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.7283e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.89809777287913 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8658466422761597, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 433.72 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.7515e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.4032050297139 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8698083028451996, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 379.66 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6773e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.78678583487543 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8737699634142395, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 389.74 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7010e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.30323622922914 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8777316239832794, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1073.00 ns (0.3%)
   LB compute        : 380.42 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7086e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.46804861812275 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8816932845523193, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 383.16 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.6906e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.0773060681274 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8856549451213592, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 439.90 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6899e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.06125077453078 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8896166056903991, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 384.72 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.7680e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.76044939463131 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.893578266259439, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 354.28 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.7619e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.62826532747901 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8975399268284789, dt = 0.002460073171521082
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 392.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.7583e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.30161772987331 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 797.200727915 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.9, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1472.00 ns (0.3%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 442.69 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.7741e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.8935621896239 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9039616605690399, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 386.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.7762e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.93899327433597 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9079233211380798, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 396.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.7032e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.35031291093426 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9118849817071197, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 398.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.7101e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.50203783337007 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9158466422761596, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 430.69 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.7234e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.79066748200493 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9198083028451995, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 380.42 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6749e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.73554856002579 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9237699634142394, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 424.76 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.6948e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.16761258445679 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9277316239832794, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 381.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.6199e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.53800639300411 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9316932845523193, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 388.39 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.7195e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.70672421745049 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9356549451213592, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 427.53 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7359e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.06294890059816 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9396166056903991, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1512.00 ns (0.3%)
   gen split merge   : 1233.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 427.36 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 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.5499e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.01480841944107 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.943578266259439, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.3%)
   LB compute        : 393.20 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.3415e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.47974289482333 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9475399268284789, dt = 0.002460073171521193
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 391.27 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.7150e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.71690455445042 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 799.0958625000001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.9500000000000001, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (1.7%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 412.14 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (67.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5810e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.69139202609615 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.95396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 406.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (61.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5459e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.92753390601274 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9579233211380799, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 387.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.6471e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.13096207129772 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9618849817071198, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 403.61 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.6729e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.69175459455681 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9658466422761597, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1273.00 ns (0.3%)
   LB compute        : 380.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5983e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.06923078556751 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9698083028451996, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 415.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6691e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.60969141465192 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9737699634142395, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 400.16 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.6562e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.32756039031872 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9777316239832794, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 433.16 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6272e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.69631338553887 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9816932845523193, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1263.00 ns (0.3%)
   LB compute        : 395.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7022e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.33026614386537 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9856549451213592, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 357.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5920e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.931444685052 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9896166056903991, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 380.66 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.6918e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.1031414457622 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.993578266259439, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 392.54 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6645e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.5091068587964 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9975399268284789, dt = 0.002460073171521082
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.5%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 374.49 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.6681e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   2.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.083036257178065 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 801.003318418 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 1, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (1.5%)
   patch tree reduce : 1934.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 468.95 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 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    | 4.6535e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.27061909613708 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.00396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 440.54 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.5815e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.70376672380837 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.00792332113808, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 382.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7077e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.4485164778565 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.01188498170712, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 397.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6637e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.49062394089167 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.01584664227616, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 382.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.4597e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.05196577687178 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0198083028452, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1472.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 393.58 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.7441e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.24033597117828 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.02376996341424, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.84 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.7429e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.21464279011332 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.02773162398328, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1323.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 403.44 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.6895e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.05343058833476 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0316932845523201, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 408.90 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (63.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5836e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.7489245941082 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0356549451213601, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 442.01 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.5975e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.05202719415561 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0396166056904002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.1%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 444.51 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.6285e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.72668139866958 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0435782662594402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 381.33 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.8265e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.03480687071655 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0475399268284802, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (0.9%)
   patch tree reduce : 1513.00 ns (0.2%)
   gen split merge   : 862.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.1%)
   LB compute        : 610.81 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.7069e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.60700150532451 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 802.9017301340001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 1.05, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 422.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6889e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.03911664713596 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.05396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 455.85 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.6647e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.51363055370324 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.05792332113808, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 403.84 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.6976e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.22879507993395 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.06188498170712, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1462.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 381.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.7065e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.4221654872974 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.06584664227616, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 380.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.7381e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.11180101517142 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0698083028452001, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 393.69 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.6283e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.72087819294373 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0737699634142401, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 417.53 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.3643e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.97714726944388 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0777316239832802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 379.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.7372e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.09101223200898 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0816932845523202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 303.18 us  (43.0%)
   patch tree reduce : 1663.00 ns (0.2%)
   gen split merge   : 862.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.2%)
   LB compute        : 387.43 us  (54.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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    | 4.6909e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.08323448673669 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0856549451213602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 400.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.5977e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.0558596865293 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0896166056904002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 399.91 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.6050e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.21438652138261 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0935782662594402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 377.27 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.6431e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.04233059930858 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0975399268284802, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.1%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 430.35 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6641e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.028275642374126 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 804.805915861 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 1.1, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 403.29 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7077e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.44981466011059 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.10396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 380.20 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 21.43 us   (5.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (61.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6867e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.99276409886735 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1079233211380801, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 397.73 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.5827e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.72981338443367 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1118849817071201, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1493.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 381.42 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.6704e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.63661823296691 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1158466422761601, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 411.26 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.6922e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.11242046748828 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1198083028452002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 404.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (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.6745e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.72659911252869 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1237699634142402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 401.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (63.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7045e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.37970695083702 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1277316239832802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1652.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 404.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7353e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.04923047311415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1316932845523202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 377.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.7557e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.49438305572228 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1356549451213602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1273.00 ns (0.3%)
   LB compute        : 408.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.7232e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.78750861415145 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1396166056904002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 405.94 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.7114e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.52869234173771 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1435782662594403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 415.64 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.7038e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.36358431590037 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1475399268284803, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 396.82 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.5526e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.52136702157475 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 806.694323518 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 1.1500000000000001, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.6%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1292.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 406.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (63.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7268e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.8642779605633 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1539616605690401, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 384.80 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.6708e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.6455656187366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1579233211380802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.1%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 462.15 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6234e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.61368550940816 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1618849817071202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 408.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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    | 4.6056e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.22737036703391 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1658466422761602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 379.54 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.6650e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.51945248702374 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1698083028452002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.5%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 375.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.6445e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.07395708442019 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1737699634142402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 408.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.5869e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.8199196642543 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1777316239832802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 401.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.6639e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.49639122943523 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1816932845523203, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 403.80 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.6893e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.04782909791295 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1856549451213603, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 410.62 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.5759e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.58056039618265 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1896166056904003, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.5%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5874e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.83028020253663 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1935782662594403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 414.57 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.6839e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.9322221475454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1975399268284803, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.1%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 550.06 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.6915e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.399399738589054 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 808.599026321 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 1.2000000000000002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 420.61 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.8819e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.23981502640703 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2039616605690402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 370.32 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.5990e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.08265743080781 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2079233211380802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 383.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6091e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.30365461551344 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2118849817071202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 398.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.6642e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.50332439943554 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2158466422761602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.2%)
   LB compute        : 416.19 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.6514e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.22377222546375 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2198083028452003, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 400.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6642e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.50258610685177 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2237699634142403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 391.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 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.7277e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.88391256380221 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2277316239832803, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 401.32 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.9002e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.63762554133216 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2316932845523203, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 355.03 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.8811e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.22317453714209 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2356549451213603, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 358.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8121e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.72153924586863 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2396166056904003, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 1854.00 ns (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 361.10 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.7996e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.44854560664453 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2435782662594403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 379.69 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.5065e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.07078777509177 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2475399268284804, dt = 0.002460073171519639
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 374.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5800e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.89158855831808 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 810.4769479390001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 1.25, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1964.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 435.16 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.6833e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.91853285497615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.25396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.5%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 376.10 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6337e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.838903251603 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.25792332113808, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 400.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.7157e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.62291868278739 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.26188498170712, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 421.70 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.7698e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.79959919074409 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.26584664227616, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 399.62 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6153e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.43732309166639 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2698083028452, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 383.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.7177e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.66584602401292 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.27376996341424, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 411.72 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.6720e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.67227589201426 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.27773162398328, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 387.69 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6748e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.7339628989299 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2816932845523201, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 385.69 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5691e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.43403837866768 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2856549451213601, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 380.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.6327e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.8167280794814 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2896166056904002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.3%)
   LB compute        : 379.63 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6397e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.96974823275389 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2935782662594402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 418.63 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.6636e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.4902259968768 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2975399268284802, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 426.25 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.6651e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.04217329371869 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 812.3716825910001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 1.3, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 436.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6971e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.21844430916867 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.30396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 376.52 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (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.7389e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.12765090095192 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.30792332113808, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 393.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.8569e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.69678025740976 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.31188498170712, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 480.16 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7316e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.96871305453834 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.31584664227616, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 402.85 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.8821e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.24396686160289 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3198083028452001, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 397.16 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6878e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.0151955418627 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3237699634142401, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (0.3%)
   patch tree reduce : 1452.00 ns (0.1%)
   gen split merge   : 952.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.1%)
   LB compute        : 1664.74 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.6686e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.59850156970508 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3277316239832802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 375.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6856e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.96769679944997 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3316932845523202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.1%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 426.75 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.7062e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.4158497679085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3356549451213602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 416.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6149e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.429689662794 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3396166056904002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 379.81 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3606e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.89515668296855 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3435782662594402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 375.16 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6648e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.51498680145635 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3475399268284802, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 391.74 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.6443e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.761737610430096 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 814.2617332850001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 1.35, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1974.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 432.29 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6618e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.45110477836516 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.35396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 380.87 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.7200e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.71615470156817 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3579233211380801, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7076e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.44682462190544 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3618849817071201, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 378.84 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 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.7098e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.49596417778302 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3658466422761601, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1533.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 385.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.6939e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.14840623848906 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3698083028452002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.6%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 378.69 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6600e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.4119113112413 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3737699634142402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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   (3.9%)
   patch tree reduce : 1823.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 503.56 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (63.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6229e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.60306309460195 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3777316239832802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 402.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.6200e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.5407563403548 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3816932845523202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 423.25 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6546e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.29286779459063 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3856549451213602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 446.81 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.5997e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.09930740074873 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3896166056904002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 378.81 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (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.6443e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.06995452329575 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3935782662594403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 371.41 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 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.6449e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.0815555165834 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3975399268284803, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.0%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 1372.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 505.42 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.7462e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.13801436534001 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 816.156726045 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 1.4000000000000001, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (1.8%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 383.38 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (63.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8006e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.47187294530345 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4039616605690401, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 357.82 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8001e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.45996734814375 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4079233211380802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.5%)
   patch tree reduce : 1784.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 374.01 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5488e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.99112705488871 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4118849817071202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.5%)
   patch tree reduce : 1462.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 361.84 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.0050e+05 | 65536 |      2 | 1.636e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.15594910663894 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4158466422761602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.0%)
   patch tree reduce : 1834.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 521.64 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.6185e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.50761815404147 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4198083028452002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 391.32 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7774e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.96555465080928 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4237699634142402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 519.26 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.5431e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.86673089069916 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4277316239832802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 410.33 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6680e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.58555225105096 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4316932845523203, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1953.00 ns (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 389.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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.6392e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.95780483602869 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4356549451213603, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 408.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6113e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.35040052827733 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4396166056904003, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1813.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 386.88 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (64.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5825e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.7255246743558 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4435782662594403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 407.72 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6054e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.22336343958031 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4475399268284803, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 381.33 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.7320e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.945928837543796 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 818.077575464 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 1.4500000000000002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 454.72 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.3133e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.86617836353166 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4539616605690402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 392.91 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6565e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.3344510731174 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4579233211380802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 420.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6747e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.73172709191547 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4618849817071202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 387.06 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4756e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.3975670699324 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4658466422761602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 425.88 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (57.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5507e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.0328488517235 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4698083028452003, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1623.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 397.05 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6015e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.13780272357491 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4737699634142403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 409.08 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5789e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.64637046266111 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4777316239832803, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 385.41 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.5599e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.23273087458004 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4816932845523203, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 398.35 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.6163e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.45999187023494 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4856549451213603, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 412.92 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (63.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5726e+05 | 65536 |      2 | 1.834e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.74775457517765 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4896166056904003, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.7%)
   patch tree reduce : 1543.00 ns (0.2%)
   gen split merge   : 962.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.1%)
   LB compute        : 890.26 us  (97.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (71.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5613e+05 | 65536 |      2 | 1.840e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.50017359611165 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4935782662594403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 408.67 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5978e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.05771146112068 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4975399268284804, dt = 0.002460073171519639
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1844.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 537.06 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2115e+05 | 65536 |      2 | 1.556e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.91263033299183 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 820.1079428050001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 1.5, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.2%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 454.65 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5525e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.07175037381352 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.50396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.30 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5929e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.94988725936516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.50792332113808, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.77 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4149e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.07749999886296 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.51188498170712, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.5%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 376.49 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7380e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.10797161794879 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.51584664227616, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 406.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.6722e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.67720122759489 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5198083028452, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.15 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 412.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.6610e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.43317753440499 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.52376996341424, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 420.04 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.6616e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.44598412375528 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.52773162398328, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 429.89 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.5579e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.18865439550285 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5316932845523201, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 391.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.4664e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.19714441235995 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5356549451213601, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 397.93 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6009e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.12434300349832 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5396166056904002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 380.26 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6334e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.83218245078925 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5435782662594402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.5%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 379.38 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6864e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.98614605634025 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5475399268284802, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 409.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 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    | 4.6824e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.27607324450254 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 822.0281610310001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 1.55, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (1.6%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 410.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (62.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4699e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.27377347737693 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.55396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 381.58 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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    | 2.4399e+05 | 65536 |      2 | 2.686e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.098288204696814 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.55792332113808, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (0.5%)
   patch tree reduce : 1824.00 ns (0.1%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.1%)
   LB compute        : 1234.21 us (98.3%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (69.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.2414e+05 | 65536 |      2 | 1.545e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.30243045024275 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.56188498170712, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 396.41 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.5096e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.13798100634038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.56584664227616, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 420.65 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 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.5411e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.82432717862153 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5698083028452001, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 418.27 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.4039e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.83843274195144 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5737699634142401, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (0.8%)
   patch tree reduce : 1403.00 ns (0.2%)
   gen split merge   : 931.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.1%)
   LB compute        : 646.03 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5367e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.72780593702338 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5777316239832802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 404.12 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5114e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.17766598770588 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5816932845523202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 411.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6006e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.11861531925642 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5856549451213602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 380.71 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8147e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.77706535491423 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5896166056904002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 407.05 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6249e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.64749244448383 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5935782662594402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 405.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (63.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3018e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.61511352066759 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5975399268284802, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 403.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1419e+05 | 65536 |      2 | 1.582e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.971713949791514 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 824.1285642600001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 1.6, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.36 us    (1.6%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 433.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.5057e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.05287096039936 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.60396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 426.51 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.5378e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.75102163734817 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6079233211380801, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 391.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.5118e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.1854185158785 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6118849817071201, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 399.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.6423e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.02527958954713 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6158466422761601, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 390.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (63.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5768e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.60077604183321 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6198083028452002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 426.50 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.7042e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.37301361481144 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6237699634142402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 385.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.6470e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.12879212933238 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6277316239832802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1914.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 406.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.4255e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.3083306195644 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6316932845523202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1512.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 540.78 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6066e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.24865774202742 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6356549451213602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 400.50 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.8270e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.04505969012203 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6396166056904002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 422.87 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6144e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.41873768751667 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6435782662594403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 419.22 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6390e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.95468758134824 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6475399268284803, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 1123.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 399.69 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7047e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.57691443212112 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 826.0557968640001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 1.6500000000000001, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1714.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 410.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6304e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.76608162789881 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6539616605690401, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 397.64 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6575e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.35592756162518 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6579233211380802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 382.83 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6319e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.8000644503947 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6618849817071202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 396.96 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5981e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.06337110005511 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6658466422761602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 403.40 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.5591e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.21561075197317 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6698083028452002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 405.76 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.3403e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.45313756887353 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6737699634142402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 410.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.5543e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.11154616921135 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6777316239832802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 380.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.6368e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   1.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.90694090008718 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6816932845523203, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 378.12 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.6011e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.12913848378736 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6856549451213603, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 394.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.5961e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.02037824398798 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6896166056904003, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 397.01 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.5589e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.21142757508531 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6935782662594403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 404.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
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.6320e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.80218468499574 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6975399268284803, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 397.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6298e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.565552739807536 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 827.9837470470001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 1.7000000000000002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.6%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 421.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.6749e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.73563564581993 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7039616605690402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1964.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 417.23 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.5792e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.6525894407034 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7079233211380802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.1%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 446.69 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6179e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.49487388362732 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7118849817071202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 407.84 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.6790e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.82446016170564 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7158466422761602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 370.11 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.6841e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.93656505770501 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7198083028452003, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.5%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 366.55 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.6409e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.99456035990912 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7237699634142403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.2%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 440.34 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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    | 4.6849e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.9538609568641 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7277316239832803, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 393.54 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6781e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.8039749848198 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7316932845523203, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 369.65 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6169e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.4735391589791 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7356549451213603, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 405.25 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.7245e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.81502261821313 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7396166056904003, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 388.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6228e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.60062693391261 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7435782662594403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1472.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 443.94 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.6355e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.87743306913985 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7475399268284804, dt = 0.002460073171519639
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1814.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 375.45 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.6758e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.187356859017235 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 829.8843511480001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 1.75, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (1.6%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 418.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (63.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4423e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.67421381410699 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.75396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.5%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 396.40 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (61.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6994e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.26935084048667 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.75792332113808, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.3%)
   LB compute        : 445.44 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.5566e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.16007386653796 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.76188498170712, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 448.29 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.6350e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.86731132692438 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.76584664227616, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 415.01 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.5406e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.81174740699109 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7698083028452, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 392.19 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.5979e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.06072653266433 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.77376996341424, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 393.04 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6165e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.46422934011063 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.77773162398328, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 417.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.6237e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.62079747137696 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7816932845523201, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 388.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6913e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.09299953941911 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7856549451213601, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 395.60 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6278e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.71093149742843 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7896166056904002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 381.16 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.6689e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.6056861238629 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7935782662594402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.3%)
   LB compute        : 399.46 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7572e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.52727333411 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7975399268284802, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 379.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.6095e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.291150739436425 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 831.800020362 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 1.8, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 1041.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 423.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.7107e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.51545030716706 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.80396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 384.24 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7053e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.39629046964349 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.80792332113808, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 388.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5204e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.3722448067208 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.81188498170712, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 409.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5201e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.36560996520146 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.81584664227616, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.49 us   (5.3%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 384.79 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6281e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.71592131375199 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8198083028452001, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.4%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 424.96 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.6856e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.96891356519538 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8237699634142401, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 405.21 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5745e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.54967522160737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8277316239832802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 444.25 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.5116e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.1817218874444 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8316932845523202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1814.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 377.79 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.5601e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.23696487404543 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8356549451213602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.1%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.2%)
   LB compute        : 521.86 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.5566e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.16079226399259 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8396166056904002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 388.09 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.5210e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.38569296080476 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8435782662594402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 400.48 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.6887e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.03521175003104 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8475399268284802, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1984.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 434.48 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
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.6480e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.810675082059774 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 833.723587195 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 1.85, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.7%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 430.98 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.3050e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.68575035733245 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.85396166056904, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 377.55 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 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.6261e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.6732905389805 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8579233211380801, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (0.8%)
   patch tree reduce : 1463.00 ns (0.2%)
   gen split merge   : 882.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 675.91 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.7070e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.43496038714842 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8618849817071201, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 436.38 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.7051e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.39283748538568 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8658466422761601, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 359.73 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.6713e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.65699987709276 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8698083028452002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 395.93 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.63 us    (73.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.3461e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.5801921765012 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8737699634142402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 373.47 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.8606e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.77763452960902 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8777316239832802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.4%)
   patch tree reduce : 1483.00 ns (0.1%)
   gen split merge   : 871.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.1%)
   LB compute        : 1492.68 us (98.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.7849e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.12935628679048 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8816932845523202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1733.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 363.27 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.8605e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.77422743825446 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8856549451213602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1193.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 387.32 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.6257e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.66489504467728 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8896166056904002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1814.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 380.40 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5725e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.50676154469615 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8935782662594403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 381.37 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.6315e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.7905017049198 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8975399268284803, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 439.17 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5469e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.4446141114897 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 835.635805279 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 1.9000000000000001, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.92 us    (1.7%)
   patch tree reduce : 1984.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 435.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 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    | 4.5771e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   1.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.6080265764829 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9039616605690401, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 395.76 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.6258e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.66718936614969 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9079233211380802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 419.45 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.6530e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.25782798545976 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9118849817071202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 371.10 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.8035e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.53404893709236 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9158466422761602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 384.82 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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.6403e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.98229648854105 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9198083028452002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1973.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 381.80 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5969e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.03881647110657 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9237699634142402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 384.41 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.5135e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.22364278638189 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9277316239832802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 392.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.6701e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.63066842714447 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9316932845523203, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 472.96 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.7085e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.46645255640554 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9356549451213603, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 428.77 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.6608e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.42771749943181 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9396166056904003, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 408.59 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.6484e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.15776846146811 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9435782662594403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.5%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 385.64 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.6242e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.63273155646023 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9475399268284803, dt = 0.002460073171519861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1863.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 415.64 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.6533e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.88311722073735 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 837.541804047 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 1.9500000000000002, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (1.6%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 420.87 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.5706e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.46637309612018 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9539616605690402, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 387.73 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.5998e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.10050949247052 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9579233211380802, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.49 us   (5.0%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 392.63 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5613e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.26384386696031 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9618849817071202, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 384.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.6009e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.12399576726396 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9658466422761602, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 438.13 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.5754e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.56932568985071 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9698083028452003, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1924.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 374.21 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.4794e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.48033884458334 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9737699634142403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 394.69 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.6048e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.20906746848084 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9777316239832803, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 385.08 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (62.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5651e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.34485477140981 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9816932845523203, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 387.64 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6049e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.21172692435034 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9856549451213603, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 392.24 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (64.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6452e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.08826231308754 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9896166056904003, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 393.97 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6463e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.1120717843197 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9935782662594403, dt = 0.003961660569039922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 403.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.6990e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.25909670378255 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9975399268284804, dt = 0.002460073171519639
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 387.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.76 us   (78.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6066e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.2515265841553 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 839.464548282 (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  20.31 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     : 12.14 us   (78.7%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (0.2%)
   patch tree reduce : 871.00 ns  (0.1%)
   gen split merge   : 952.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.1%)
   LB compute        : 817.24 us  (98.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (64.3%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1664.00 ns (0.3%)
   patch tree reduce : 491.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 291.00 ns  (0.0%)
   LB compute        : 606.30 us  (98.6%)
   LB move op cnt    : 0
   LB apply          : 2.18 us    (0.4%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (62.5%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (0.3%)
   patch tree reduce : 450.00 ns  (0.1%)
   gen split merge   : 371.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 291.00 ns  (0.0%)
   LB compute        : 583.01 us  (98.6%)
   LB move op cnt    : 0
   LB apply          : 2.17 us    (0.4%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running none hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (1.4%)
   patch tree reduce : 1402.00 ns (0.2%)
   gen split merge   : 1252.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.1%)
   LB compute        : 563.16 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7013e+05 | 65536 |      2 | 2.426e-01 | 0.0% |   2.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.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.6%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 393.84 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (73.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.3545e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.37879994201158 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003652931508385532, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (0.3%)
   patch tree reduce : 1694.00 ns (0.1%)
   gen split merge   : 1042.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.0%)
   LB compute        : 1741.74 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (63.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7856e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.02788238935617 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007305863016771064, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 436.12 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0377e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.0871447990494 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010958794525156596, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 451.94 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.8928e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.178727098567 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014611726033542128, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (0.3%)
   patch tree reduce : 1654.00 ns (0.1%)
   gen split merge   : 993.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.1%)
   LB compute        : 1774.34 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4966e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.23033455971151 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01826465754192766, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.3%)
   patch tree reduce : 1703.00 ns (0.1%)
   gen split merge   : 862.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.1%)
   LB compute        : 1792.88 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.7616e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.5462571055663 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021917589050313192, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (0.6%)
   patch tree reduce : 1703.00 ns (0.2%)
   gen split merge   : 892.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 954.87 us  (98.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (68.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.5928e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.16059552012473 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025570520558698726, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 476.02 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8364e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.04699406736408 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02922345206708426, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 381.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9382e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.0906717231268 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03287638357546979, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.0%)
   patch tree reduce : 1663.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 492.74 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9304e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.93409007821772 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036529315083855325, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 460.50 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.8977e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.27835987978884 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04018224659224086, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 507.20 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.8774e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.8713077440075 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04383517810062639, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 469.28 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9517e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.3624736030928 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047488109609011925, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1663.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 460.02 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8058e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4330634554692 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05114104111739746, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 383.43 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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    | 4.8465e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.25012355191723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05479397262578299, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 381.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.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.8032e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.38186937490553 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.058446904134168524, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 394.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8303e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.92579378838617 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06209983564255406, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 390.19 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.7903e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.12295798979227 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06575276715093958, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 386.63 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8773e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.86950500043314 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06940569865932511, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 398.19 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.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.8386e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.09141304297815 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07305863016771064, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 522.97 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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    | 4.9375e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.07571992028134 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07671156167609616, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 438.86 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.8229e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.776372874313 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08036449318448169, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1973.00 ns (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 410.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.8007e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.33190523829985 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08401742469286722, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 437.21 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8860e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.04377010241701 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08767035620125274, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.0%)
   patch tree reduce : 1673.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 524.87 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 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    | 4.9146e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.61708394001845 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09132328770963827, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 395.59 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 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.9037e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.39920236838869 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0949762192180238, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 453.60 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.7%)
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    | 4.9599e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.52695527356735 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09862915072640932, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 372.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.9469e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.26615304611386 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10228208223479485, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 403.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.9045e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.413924148957 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10593501374318037, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 365.54 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0617e+05 | 65536 |      2 | 1.295e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.5693207677103 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1095879452515659, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 412.17 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7909e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.13494027579722 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11324087675995143, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 358.48 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.9169e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.662830763633 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11689380826833695, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 401.10 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9262e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.84969006881006 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12054673977672248, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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   (4.7%)
   patch tree reduce : 1612.00 ns (0.3%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 428.94 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.9661e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.6495486519159 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.124199671285108, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 417.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9103e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.53015034092593 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12785260279349353, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.1%)
   patch tree reduce : 1572.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 488.16 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.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.9168e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.66212755592366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13150553430187906, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 1283.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 513.17 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9029e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.38323813332369 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13515846581026458, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 383.67 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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    | 4.8388e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.09637449338712 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1388113973186501, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 440.79 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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.8684e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.69026933015674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14246432882703564, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 387.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9364e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.05436610888736 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14611726033542116, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 400.42 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.9765e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.85975898519597 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1497701918438067, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 375.53 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8604e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.5301121760302 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15342312335219221, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 402.17 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.8701e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.72371098273177 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15707605486057774, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1554.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 388.22 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (62.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9139e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.60290978053675 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16072898636896327, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 430.47 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 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    | 5.0160e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.65124685717588 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1643819178773488, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.3%)
   LB compute        : 426.45 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8406e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.132920321259 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16803484938573432, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.1%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 500.36 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.8925e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.17444962705855 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17168778089411985, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 396.81 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9407e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.14088075786881 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17534071240250537, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 437.38 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.9802e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.93338887968225 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1789936439108909, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.5%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 383.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.8843e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0094253686722 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18264657541927642, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.1%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 466.82 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.9279e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.8835794122819 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18629950692766195, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 387.37 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.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.9559e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.44617413990667 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18995243843604748, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 396.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.8%)
Info: cfl dt = 0.003652931508385534                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9202e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.72903266735571 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.193605369944433, dt = 0.003652931508385534
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 403.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (65.8%)
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.9618e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.5632893498741 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19725830145281853, dt = 0.003652931508385536
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 417.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.1%)
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.9963e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.2557162598416 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20091123296120406, dt = 0.0036529315083855384
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 408.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.8%)
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.8324e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.96723033536402 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20456416446958958, dt = 0.0036529315083855436
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 394.29 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.2%)
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.8902e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.12711083939097 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20821709597797514, dt = 0.0036529315083855536
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 434.90 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.6%)
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.9073e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.46996713164394 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2118700274863607, dt = 0.003652931508385568
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.1%)
   patch tree reduce : 1574.00 ns (0.3%)
   gen split merge   : 1162.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 487.01 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (65.8%)
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.8820e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.96238493750289 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21552295899474627, dt = 0.0036529315083855935
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.0%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 492.87 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.3%)
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.8791e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.90566215010352 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21917589050313185, dt = 0.0036529315083856325
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 448.04 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.2%)
Info: cfl dt = 0.003652931508385694                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8488e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.29749152754508 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2228288220115175, dt = 0.003652931508385694
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 405.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.5%)
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.9356e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.03825796240483 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22648175351990318, dt = 0.0036529315083857917
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.5%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 386.04 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.4%)
Info: cfl dt = 0.0036529315083859404                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0440e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.21407001844658 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.230134685028289, dt = 0.0036529315083859404
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 2.03 us    (0.4%)
   gen split merge   : 1253.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 499.57 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (64.1%)
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.8970e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.26304717839548 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23378761653667493, dt = 0.0036529315083861655
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 399.96 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (66.3%)
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.5143e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.58399274343365 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2374405480450611, dt = 0.0036529315083865025
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 424.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.6%)
Info: cfl dt = 0.0036529315083869978                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8520e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.36096428957086 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2410934795534476, dt = 0.0036529315083869978
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1614.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.2%)
   LB compute        : 506.09 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.5%)
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.8701e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.72410458441779 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2447464110618346, dt = 0.003652931508387719
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 373.45 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.5%)
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.8118e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.55372573653415 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2483993425702223, dt = 0.0036529315083887576
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 428.25 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.9%)
Info: cfl dt = 0.003652931508390237                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8655e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.63251725808206 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2520522740786111, dt = 0.003652931508390237
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1693.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 470.26 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.1%)
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.8888e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.09996152036048 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2557052055870013, dt = 0.0036529315083923203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (1.6%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 416.13 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.98 us    (75.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    | 4.9945e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.22008265280488 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2593581370953936, dt = 0.0036529315083952264
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 1302.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 393.69 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.1%)
Info: cfl dt = 0.003652931508399244                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9080e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.48503904631023 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26301106860378887, dt = 0.003652931508399244
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 398.84 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.4%)
Info: cfl dt = 0.003652931508404744                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8708e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.73777004673214 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2666640001121881, dt = 0.003652931508404744
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.5%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 380.92 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.7%)
Info: cfl dt = 0.0036529315084122102                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8897e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.11798545808709 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27031693162059284, dt = 0.0036529315084122102
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.35 us   (2.6%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 408.99 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.7%)
Info: cfl dt = 0.00365293150842226                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9088e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.49988686310205 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27396986312900506, dt = 0.00365293150842226
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.0%)
   patch tree reduce : 1733.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.2%)
   LB compute        : 533.09 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.7%)
Info: cfl dt = 0.0036529315084356797                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8163e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.64479296550861 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27762279463742734, dt = 0.0036529315084356797
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1654.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.2%)
   LB compute        : 470.06 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.5%)
Info: cfl dt = 0.003652931508453463                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9359e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.04429837093556 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.281275726145863, dt = 0.003652931508453463
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 397.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.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    | 4.9731e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.79041881735031 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28492865765431646, dt = 0.003652931508476852
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1542.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 431.65 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.2%)
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    | 5.0159e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.65005281430707 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2885815891627933, dt = 0.0036529315085073997
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 386.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.0%)
Info: cfl dt = 0.003652931508547024                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9791e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.91068308123249 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2922345206713007, dt = 0.003652931508547024
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1253.00 ns (0.3%)
   LB compute        : 426.07 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.6%)
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.9732e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.79206660178623 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2958874521798477, dt = 0.003652931508598084
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 379.97 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (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.9659e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.6460005514102 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29954038368844577, dt = 0.003652931508663467
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 412.54 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.9%)
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.9536e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.39974702421951 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30319331519710924, dt = 0.0036529315087466823
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 379.32 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.4%)
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    | 5.0040e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.41018185945246 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3068462467058559, dt = 0.0036529315088519743
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.1%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 464.88 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.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.8838e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.99843477277442 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3104991782147079, dt = 0.0036529315089844448
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.0%)
   patch tree reduce : 1703.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 525.92 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.2%)
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.9335e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.99537870133977 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31415210972369234, dt = 0.0036529315091502054
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 384.43 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.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.9127e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.57909893470568 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31780504123284253, dt = 0.00365293150935653
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.1%)
   patch tree reduce : 2.20 us    (0.5%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 456.04 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.2%)
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.9674e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.67660081716447 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32145797274219906, dt = 0.003652931509612043
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.4%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 398.97 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.1%)
Info: cfl dt = 0.0036529315099269218                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9573e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.47346286101516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3251109042518111, dt = 0.0036529315099269218
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 415.10 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.8%)
Info: cfl dt = 0.0036529315103131193                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0294e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.92075946234596 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.328763835761738, dt = 0.0036529315103131193
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 378.48 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 7.84 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.2%)
Info: cfl dt = 0.003652931510784622                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9169e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.66229563670615 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3324167672720511, dt = 0.003652931510784622
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 416.09 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.6%)
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.9068e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.46009161393069 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3360696987828357, dt = 0.0036529315113577225
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 393.90 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.1%)
Info: cfl dt = 0.003652931512051328                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9198e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.72237261547778 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3397226302941934, dt = 0.003652931512051328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 395.56 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.0%)
Info: cfl dt = 0.0036529315128872946                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8899e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.12141176805089 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34337556180624473, dt = 0.0036529315128872946
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 397.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.1%)
Info: cfl dt = 0.003652931513890794                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9116e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.55683526286698 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34702849331913205, dt = 0.003652931513890794
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.07 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 20.60 us   (4.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.9%)
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    | 5.0208e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.74813990567274 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35068142483302284, dt = 0.003652931515090714
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1663.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 457.75 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (63.2%)
Info: cfl dt = 0.0036529315165200918                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9169e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.66278283020348 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35433435634811355, dt = 0.0036529315165200918
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 391.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.5%)
Info: cfl dt = 0.0036529315182165837                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9105e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.53556063885318 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35798728786463363, dt = 0.0036529315182165837
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 401.35 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.7%)
Info: cfl dt = 0.0036529315202229696                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9068e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.45993995439078 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36164021938285024, dt = 0.0036529315202229696
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (0.3%)
   patch tree reduce : 1442.00 ns (0.1%)
   gen split merge   : 862.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.1%)
   LB compute        : 1736.26 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.8%)
Info: cfl dt = 0.0036529315225876987                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8892e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.10777664333506 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3652931509030732, dt = 0.0036529315225876987
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1633.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 478.51 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.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    | 4.8159e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.63751876951 (tsim/hr)                               [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3689460824256609, dt = 0.003652931525365475
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.2%)
   LB compute        : 457.79 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.8%)
Info: cfl dt = 0.0036529315286178824                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9220e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.7648662097361 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3725990139510264, dt = 0.0036529315286178824
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 405.60 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.1%)
Info: cfl dt = 0.003652931532414045                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9479e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.28550665903553 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3762519454796443, dt = 0.003652931532414045
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 483.93 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.6%)
Info: cfl dt = 0.0036529315368313436                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8959e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.24170231114495 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37990487701205833, dt = 0.0036529315368313436
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 398.48 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (64.4%)
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    | 5.0184e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.70010221581849 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38355780854888966, dt = 0.0036529315419561643
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 392.31 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.2%)
Info: cfl dt = 0.0036529315478846915                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9451e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.22861451568703 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38721074009084583, dt = 0.0036529315478846915
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 371.72 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (65.8%)
Info: cfl dt = 0.003652931554723754                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9715e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.7584064796031 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39086367163873054, dt = 0.003652931554723754
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 420.96 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.1%)
Info: cfl dt = 0.0036529315625917023                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7436e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.18680080732317 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3945166031934543, dt = 0.0036529315625917023
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (0.5%)
   patch tree reduce : 1733.00 ns (0.1%)
   gen split merge   : 951.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.1%)
   LB compute        : 1185.11 us (98.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.1%)
Info: cfl dt = 0.003652931571619341                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9053e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.43022102215687 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.398169534756046, dt = 0.003652931571619341
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 376.13 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.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    | 4.8720e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.76163717300909 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40182246632766533, dt = 0.0036529315819509045
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 409.06 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.3%)
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.9755e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.8386075888667 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40547539790961623, dt = 0.003652931593745071
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1502.00 ns (0.3%)
   gen split merge   : 1173.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 413.43 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.5%)
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.9851e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.0321195124177 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4091283295033613, dt = 0.003652931607176027
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.1%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 479.18 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.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.9134e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.59396742514295 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4127812611105373, dt = 0.0036529316224345756
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.0%)
   patch tree reduce : 1633.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 471.85 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.1%)
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    | 5.0106e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.5425324920243 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4164341927329719, dt = 0.0036529316397292864
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 406.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.5%)
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.9289e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.9044206054208 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4200871243727012, dt = 0.0036529316592876816
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.5%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 413.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.2%)
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    | 3.0417e+05 | 65536 |      2 | 2.155e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.03539315828866 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4237400560319889, dt = 0.003652931681357479
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 379.87 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (63.8%)
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.8904e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.13090773367041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4273929877133464, dt = 0.0036529317062078603
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 415.74 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.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    | 5.0175e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.68279460774782 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4310459194195542, dt = 0.0036529317341307873
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 403.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.5%)
Info: cfl dt = 0.003652931765442353                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9053e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.42954269324478 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.434698851153685, dt = 0.003652931765442353
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.2%)
   patch tree reduce : 2.06 us    (0.4%)
   gen split merge   : 1172.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 432.12 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 21.96 us   (4.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.5%)
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.8778e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.87793545858982 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43835178291912735, dt = 0.0036529318004841723
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 425.71 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.1%)
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.8954e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.2325121828242 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4420047147196115, dt = 0.0036529318396248023
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 374.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.9%)
Info: cfl dt = 0.003652931883261201                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9451e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.22868250066264 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4456576465592363, dt = 0.003652931883261201
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 402.53 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.0%)
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.9313e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.95246104998762 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4493105784424975, dt = 0.0036529319318202164
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 382.84 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.7%)
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.8305e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.9293299471422 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4529635103743177, dt = 0.0036529319857601028
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 389.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.3%)
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.8559e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.43997859001627 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4566164423600778, dt = 0.0036529320455720633
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 389.46 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (67.6%)
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.8922e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.16836733176692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46026937440564986, dt = 0.003652932111781826
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.1%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 477.62 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (63.7%)
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.8305e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.92951333293945 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46392230651743166, dt = 0.003652932184951231
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 426.21 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.4%)
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.9078e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.48129293106321 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4675752387023829, dt = 0.0036529322656798473
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 454.34 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.5%)
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.8988e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.29921780713205 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47122817096806274, dt = 0.0036529323546066013
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 387.09 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.3%)
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.8723e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.7674834826504 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47488110332266936, dt = 0.003652932452411429
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 453.59 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.4%)
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.9212e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.74996939955243 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4785340357750808, dt = 0.0036529325598169318
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 383.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.8%)
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.8217e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.75319394577977 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4821869683348977, dt = 0.003652932677590051
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 382.78 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.1%)
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.9024e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.3723304186924 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48583990101248775, dt = 0.0036529328065437443
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.0%)
   patch tree reduce : 1683.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 463.54 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.6%)
Info: cfl dt = 0.00365293294753867                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9251e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.82702933618222 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48949283381903147, dt = 0.00365293294753867
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.2%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 454.09 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.4%)
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.8836e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.99455844904834 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4931457667665701, dt = 0.003652933101484878
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.5%)
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.8545e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.41043239997188 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.496798699868055, dt = 0.0036529332693434856
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 431.50 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.8%)
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.8991e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.30566498975465 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5004516331373985, dt = 0.0036529334521283752
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 449.97 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.8%)
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.8958e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.24053344818108 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5041045665895268, dt = 0.0036529336509078633
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.3%)
   LB compute        : 385.96 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.4%)
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.5629e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.56075258159362 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5077575002404348, dt = 0.003652933866806373
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 436.48 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (68.5%)
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.8692e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.7059708992856 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5114104341072411, dt = 0.003652934101006093
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 1143.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 436.98 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.7%)
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    | 5.2107e+05 | 65536 |      2 | 1.258e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.55808804072541 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150633682082472, dt = 0.003652934354748622
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 414.80 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (62.8%)
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.8924e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.17267261901787 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5187163025629958, dt = 0.0036529346293366015
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 392.63 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.9%)
Info: cfl dt = 0.0036529349261353217                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8965e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.25450752981817 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5223692371923324, dt = 0.0036529349261353217
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.66 us    (1.1%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 822.00 ns  (0.2%)
   LB compute        : 407.88 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 20.13 us   (93.8%)
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    | 5.0990e+05 | 65536 |      2 | 1.285e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.31736077946664 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5260221721184677, dt = 0.0036529352465743143
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.6%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 390.14 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.6%)
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.9807e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.9437602147147 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.529675107365042, dt = 0.0036529355921489154
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 378.14 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.4%)
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    | 5.1327e+05 | 65536 |      2 | 1.277e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.9945602874119 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5333280429571909, dt = 0.003652935964421809
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 468.72 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.9%)
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    | 5.0282e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.89647408884368 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5369809789216128, dt = 0.0036529363650245283
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 456.16 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.4%)
Info: cfl dt = 0.0036529367956589487                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9991e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.31322619065621 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5406339152866373, dt = 0.0036529367956589487
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 497.01 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.0%)
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.9462e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.25202375593184 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5442868520822962, dt = 0.003652937258098725
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 392.05 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.2%)
Info: cfl dt = 0.003652937754190703                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8320e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.95914184594884 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5479397893403949, dt = 0.003652937754190703
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 402.16 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.9%)
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.8830e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.98320001535572 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5515927270945856, dt = 0.003652938285856297
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 380.84 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.6%)
Info: cfl dt = 0.003652938855092826                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9733e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.79468490364881 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.555245665380442, dt = 0.003652938855092826
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 399.94 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.9%)
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.9515e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.35812478712458 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5588986042355348, dt = 0.0036529394639747987
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 369.90 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.6%)
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.9536e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.40030685224254 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5625515436995097, dt = 0.003652940114655173
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 403.35 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.3%)
Info: cfl dt = 0.0036529408093665546                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9629e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.58572070533835 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5662044838141649, dt = 0.0036529408093665546
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 389.66 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.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.9626e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.58100013071862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5698574246235314, dt = 0.0036529415504223586
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.2%)
   patch tree reduce : 1532.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 448.06 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.3%)
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.9547e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.42120087170787 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5735103661739538, dt = 0.003652942340217921
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (0.5%)
   patch tree reduce : 1463.00 ns (0.1%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.1%)
   LB compute        : 1246.28 us (98.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.6%)
Info: cfl dt = 0.003652943181231555                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9586e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.4994572362579 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5771633085141717, dt = 0.003652943181231555
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.1%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 465.27 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.1%)
Info: cfl dt = 0.00365294407602557                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0219e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.76954062176557 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5808162516954033, dt = 0.00365294407602557
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 386.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.6%)
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.9809e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.9472634882633 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5844691957714289, dt = 0.0036529450272472196
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 379.75 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.2%)
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.9163e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.65225804072107 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5881221407986761, dt = 0.003652946037629613
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 482.90 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.4%)
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.9037e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.39968651428572 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5917750868363058, dt = 0.003652947109992565
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 455.25 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.7%)
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    | 5.0072e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.47625290408358 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5954280339462983, dt = 0.0036529482472433864
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 378.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.3%)
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.9205e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.7362128545606 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5990809821935417, dt = 0.003652949452377628
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 2.08 us    (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 456.74 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.1%)
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.9348e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.02349820761178 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6027339316459193, dt = 0.003652950728479759
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 418.92 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.8%)
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    | 5.0206e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.74382209547043 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.606386882374399, dt = 0.003652952078723793
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 444.40 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (65.8%)
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.9644e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.61618679437251 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6100398344531228, dt = 0.0036529535063738513
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 402.28 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.9%)
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    | 5.0474e+05 | 65536 |      2 | 1.298e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.28241571036558 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6136927879594967, dt = 0.0036529550147846746
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 405.77 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.1%)
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.8912e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.14724203006435 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173457429742814, dt = 0.003652956607402064
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1554.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 383.83 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.6%)
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.8678e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.67952070424384 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6209986995816834, dt = 0.003652958287763276
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 379.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.0%)
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.8769e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.86171581559688 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6246516578694467, dt = 0.0036529600594973465
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 474.46 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.7%)
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.8583e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.4875770454651 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.628304617928944, dt = 0.0036529619263253603
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 405.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.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.7875e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.06798253812678 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6319575798552693, dt = 0.0036529638920606636
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 414.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.1%)
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.9421e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.16986691696108 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6356105437473301, dt = 0.0036529659606090083
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.1%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 446.40 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.7%)
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.8991e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.3071613271479 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6392635097079391, dt = 0.0036529681359686425
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 382.76 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.3%)
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.8445e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.21093870689305 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6429164778439077, dt = 0.003652970422230343
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.2%)
   patch tree reduce : 2.01 us    (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 446.15 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.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.8851e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.02521160480397 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.646569448266138, dt = 0.003652972823577382
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.5%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 382.58 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (65.2%)
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.8887e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0993052185833 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6502224210897154, dt = 0.003652975344285441
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 475.93 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.0%)
Info: cfl dt = 0.003652977988722462                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7983e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.28468436620435 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6538753964340008, dt = 0.003652977988722462
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 405.82 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.0%)
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.7170e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.65296868847616 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6575283744227233, dt = 0.003652980761348444
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.5%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 394.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.7%)
Info: cfl dt = 0.003652983666715181                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9125e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.57532938468552 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6611813551840717, dt = 0.003652983666715181
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 446.23 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.1%)
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.9097e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.51986405245783 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6648343388507869, dt = 0.003652986709465942
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 397.28 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.7%)
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.9887e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.1062538872871 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6684873255602528, dt = 0.0036529898943350922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 380.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.0%)
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.9534e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.39639146600493 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6721403154545879, dt = 0.0036529932261476663
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 482.09 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.7%)
Info: cfl dt = 0.003652996709818882                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8076e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.47157865592074 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6757933086807355, dt = 0.003652996709818882
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.1%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 445.36 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.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.9239e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.8058949229299 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6794463053905544, dt = 0.003653000350353597
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.73 us   (2.8%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 398.32 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (65.5%)
Info: cfl dt = 0.0036530041528457214                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8492e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.30687813953591 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.683099305740908, dt = 0.0036530041528457214
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 408.63 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (64.4%)
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    | 4.9082e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.49133691490997 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6867523098937538, dt = 0.003653008122477567
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 446.86 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.1%)
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.9556e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.4428898247569 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6904053180162314, dt = 0.003653012264519157
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 398.30 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.5%)
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.7626e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.56981078987278 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6940583302807506, dt = 0.0036530165843274794
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 425.74 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.2%)
Info: cfl dt = 0.0036530210873456878                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8943e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.21289242002216 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6977113468650781, dt = 0.0036530210873456878
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.1%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 17.56 us   (3.7%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 441.50 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.7%)
Info: cfl dt = 0.0036530257791022626                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9767e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.86643101007525 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7013643679524237, dt = 0.0036530257791022626
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.1%)
   patch tree reduce : 1663.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 465.08 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.6%)
Info: cfl dt = 0.0036530306652101207                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9075e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.47684636488674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.705017393731526, dt = 0.0036530306652101207
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 400.66 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.1%)
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.8486e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.29541679056621 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7086704243967362, dt = 0.0036530357513656795
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1183.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 389.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.4%)
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.8301e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.92407345777933 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7123234601481019, dt = 0.0036530410433478788
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.5%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 362.73 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (69.2%)
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.6969e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.25142268577876 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7159765011914497, dt = 0.0036530465470171534
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.1%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 467.17 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (66.4%)
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.9123e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.57309246007041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7196295477384669, dt = 0.003653052268314374
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.2%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 436.26 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.7%)
Info: cfl dt = 0.003653058213259738                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9211e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.75011619861574 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7232826000067812, dt = 0.003653058213259738
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1272.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 428.09 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (66.6%)
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.9736e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.80514952407188 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.726935658220041, dt = 0.0036530643879516206
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 396.66 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.0%)
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    | 5.0324e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.98494985888468 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7305887226079927, dt = 0.0036530707985654018
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.5%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 371.48 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.4%)
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.8797e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.92081912449017 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.734241793406558, dt = 0.0036530774513522314
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 402.86 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.9%)
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.8051e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4242743005534 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7378948708579103, dt = 0.003653084352637785
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 420.93 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.0%)
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.9701e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.73568219716199 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7415479552105481, dt = 0.003653091508820965
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.0%)
   patch tree reduce : 1703.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 497.94 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.9%)
Info: cfl dt = 0.003653098926372581                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0380e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.09746931452158 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.745201046719369, dt = 0.003653098926372581
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 402.34 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.7%)
Info: cfl dt = 0.0036531066118339925                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0799e+05 | 65536 |      2 | 1.290e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.93864708008535 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7488541456457416, dt = 0.0036531066118339925
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 427.89 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.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    | 5.0347e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.03154681209801 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7525072522575756, dt = 0.003653114571815723
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 401.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.9%)
Info: cfl dt = 0.0036531228129960468                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8921e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.17099923799904 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7561603668293914, dt = 0.0036531228129960468
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1522.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 430.71 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.8%)
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.6535e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.3830764633746 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7598134896423874, dt = 0.003653131342119541
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 392.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.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.9813e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.96021156579842 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7634666209845069, dt = 0.0036531401659956235
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1644.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 430.85 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.2%)
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.8113e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.54969651188836 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7671197611505025, dt = 0.0036531492914970536
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 399.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.8%)
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.9384e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.10089625564653 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7707729104419996, dt = 0.003653158725558412
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.1%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 467.77 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.5%)
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.8224e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.77332448858725 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.774426069167558, dt = 0.003653168475174567
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 397.63 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.0%)
Info: cfl dt = 0.0036531785473991074                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8120e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.56412404268792 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7780792376427326, dt = 0.0036531785473991074
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.1%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 491.17 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (65.0%)
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.4869e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.04123621501313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7817324161901317, dt = 0.0036531889493427593
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 434.91 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.1%)
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.9538e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.41035971595399 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7853856051394744, dt = 0.0036531996881717945
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 436.42 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.5%)
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.9001e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.33353682474417 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7890388048276462, dt = 0.0036532107711063997
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1173.00 ns (0.3%)
   LB compute        : 380.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.83 us   (94.5%)
Info: cfl dt = 0.0036532222054190535                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8145e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.61636177887355 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7926920155987526, dt = 0.0036532222054190535
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 436.01 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (66.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.8464e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.256290407632 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7963452378041717, dt = 0.0036532339984328742
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 375.41 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.1%)
Info: cfl dt = 0.0036532461575199556                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9387e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.10849585209905 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7999984718026045, dt = 0.0036532461575199556
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 431.74 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.9%)
Info: cfl dt = 0.0036532586900996935                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9456e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.2470114901822 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8036517179601245, dt = 0.0036532586900996935
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.3%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 391.29 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.2%)
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.9267e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.86863675841497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8073049766502242, dt = 0.003653271603637104
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 448.94 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (67.8%)
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.9118e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.56978294265433 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8109582482538613, dt = 0.0036532849056411195
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.5%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 367.38 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.6%)
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.9157e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.64837010403835 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8146115331595024, dt = 0.003653298603662891
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 462.44 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.9%)
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.9872e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.08485280257342 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8182648317631653, dt = 0.003653312705294072
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 467.68 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.6%)
Info: cfl dt = 0.0036533272181651024                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8740e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.81178830029096 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8219181444684595, dt = 0.0036533272181651024
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 380.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 20.56 us   (93.9%)
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    | 5.0076e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.49499434370381 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8255714716866246, dt = 0.00365334214994348
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.1%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 482.19 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (67.5%)
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.8795e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.92440112859481 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8292248138365681, dt = 0.003653357508332034
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 377.87 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.1%)
Info: cfl dt = 0.0036533733010671913                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8908e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.15195780773858 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8328781713449002, dt = 0.0036533733010671913
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.1%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1223.00 ns (0.2%)
   LB compute        : 477.29 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (65.4%)
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.9191e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.71890343594612 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8365315446459674, dt = 0.0036533895359172467
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 16.86 us   (3.9%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 391.14 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.3%)
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.9458e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.2551243107317 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8401849341818846, dt = 0.0036534062206806193
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 435.05 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (64.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.9842e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.02667700881383 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8438383404025652, dt = 0.00365342336318412
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 413.60 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.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.9612e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.56488754125445 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8474917637657493, dt = 0.0036534409712812178
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.4%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 413.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.6%)
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.9375e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.09010283137395 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8511452047370305, dt = 0.0036534590528503035
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 436.46 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.0%)
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.8779e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.89458479786103 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8547986637898808, dt = 0.003653477615792957
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 397.76 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.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.8143e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.6179287707062 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8584521414056737, dt = 0.0036534966680322224
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1333.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 367.67 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.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.8777e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.8911481749621 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.862105638073706, dt = 0.0036535162175108807
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1143.00 ns (0.2%)
   LB compute        : 456.80 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.9%)
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.5074e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.4606780887857 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8657591542912169, dt = 0.0036535362721897362
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 373.32 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (66.7%)
Info: cfl dt = 0.003653556840045897                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8654e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.6458093817284 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8694126905634066, dt = 0.003653556840045897
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 420.30 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.8%)
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.8550e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.43767355238846 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8730662474034525, dt = 0.0036535779290710764
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 450.83 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.0%)
Info: cfl dt = 0.0036535995472698896                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8333e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.00298072929287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8767198253325236, dt = 0.0036535995472698896
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 401.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.3%)
Info: cfl dt = 0.0036536217026581644                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8713e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.76710588716976 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8803734248797934, dt = 0.0036536217026581644
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1163.00 ns (0.2%)
   LB compute        : 432.63 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (68.4%)
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.8989e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.31981638167389 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8840270465824516, dt = 0.0036536444032612627
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.0%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 491.88 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.1%)
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.8629e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.59936504478607 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8876806909857128, dt = 0.003653667657112408
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 404.22 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.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.9439e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.22515553002297 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913343586428252, dt = 0.003653691472251024
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.1%)
   patch tree reduce : 1673.00 ns (0.3%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 480.09 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.7%)
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.8696e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.73455642103201 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8949880501150762, dt = 0.0036537158567210874
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 454.23 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.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.9836e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.02279313802562 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8986417659717973, dt = 0.0036537408185694856
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 421.70 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.9%)
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.8742e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.82761130931937 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9022955067903669, dt = 0.003653766365844397
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 441.22 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.8%)
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    | 5.0047e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.44874171467559 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9059492731562112, dt = 0.0036537925065936745
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 421.40 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.5%)
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.9696e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.74341685552477 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9096030656628049, dt = 0.003653819248863248
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 446.41 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (64.3%)
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.9621e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.59514940350418 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9132568849116681, dt = 0.00365384660069554
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 403.28 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.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.9164e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.67834574366759 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9169107315123637, dt = 0.003653874570127893
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1753.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 498.73 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.6%)
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    | 5.1321e+05 | 65536 |      2 | 1.277e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.00830417815514 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9205646060824916, dt = 0.0036539031651910176
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 390.77 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (63.8%)
Info: cfl dt = 0.0036539323939074526                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1693e+05 | 65536 |      2 | 1.268e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.75503900688076 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9242185092476826, dt = 0.0036539323939074526
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.2%)
   patch tree reduce : 1614.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 449.81 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.2%)
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    | 5.1690e+05 | 65536 |      2 | 1.268e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.74973629524678 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.92787244164159, dt = 0.0036539622642900384
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 461.13 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.7%)
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.9315e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.98446753475223 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.93152640390588, dt = 0.0036539927843404142
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 378.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (63.9%)
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    | 5.2130e+05 | 65536 |      2 | 1.257e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.6348909992243 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9351803966902205, dt = 0.003654023962047524
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 383.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.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    | 5.1347e+05 | 65536 |      2 | 1.276e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.06453392684435 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.938834420652268, dt = 0.0036540558053861456
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (0.7%)
   patch tree reduce : 1704.00 ns (0.2%)
   gen split merge   : 851.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.1%)
   LB compute        : 749.75 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.6%)
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    | 5.1646e+05 | 65536 |      2 | 1.269e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.66558197149 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9424884764576541, dt = 0.0036540883223154345
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.6%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 362.10 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (63.8%)
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    | 5.1414e+05 | 65536 |      2 | 1.275e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.20004395400633 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9461425647799695, dt = 0.0036541215207774908
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 380.53 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.3%)
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    | 5.0443e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.252676762064 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.949796686300747, dt = 0.0036541554086959335
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 367.10 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.0%)
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    | 5.1323e+05 | 65536 |      2 | 1.277e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.01939759274808 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9534508417094429, dt = 0.0036541899939745064
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 402.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.3%)
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    | 5.0358e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.08425389322672 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9571050317034174, dt = 0.003654225284495694
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.2%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 391.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.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    | 5.0533e+05 | 65536 |      2 | 1.297e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.43617302089132 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9607592569879131, dt = 0.00365426128811936
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 356.96 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.1%)
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    | 5.0882e+05 | 65536 |      2 | 1.288e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.13850311246273 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9644135182760325, dt = 0.003654298012681406
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.0%)
   patch tree reduce : 1733.00 ns (0.3%)
   gen split merge   : 1113.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 508.53 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (64.8%)
Info: cfl dt = 0.003654335465992446                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1200e+05 | 65536 |      2 | 1.280e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.77675743503201 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9680678162887139, dt = 0.003654335465992446
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1193.00 ns (0.3%)
   LB compute        : 424.98 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.1%)
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    | 5.1544e+05 | 65536 |      2 | 1.271e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.46899247589684 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9717221517547063, dt = 0.00365437365583651
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 354.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (65.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    | 5.1774e+05 | 65536 |      2 | 1.266e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.93084449382256 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9753765254105429, dt = 0.0036544125899697494
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 368.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.5%)
Info: cfl dt = 0.0036544522761191916                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1696e+05 | 65536 |      2 | 1.268e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.7753759087206 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9790309380005127, dt = 0.0036544522761191916
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.1%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 455.48 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.3%)
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    | 5.0719e+05 | 65536 |      2 | 1.292e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.81549653788265 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9826853902766318, dt = 0.003654492721981483
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.5%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 375.30 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.5%)
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    | 4.4981e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.29884286700515 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9863398829986133, dt = 0.0036545339352216785
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 457.46 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.3%)
Info: cfl dt = 0.003654575923472035                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0022e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.41980393687469 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9899944169338349, dt = 0.003654575923472035
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 373.05 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.0%)
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    | 4.8838e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.04294238536205 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.993648992857307, dt = 0.0036546186943308364
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 406.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.9%)
Info: cfl dt = 0.003654662255361233                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9229e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.82867908773618 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9973036115516378, dt = 0.003654662255361233
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 384.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.2%)
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    | 4.8134e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.63161161111093 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.000958273806999, dt = 0.003654706614090106
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.0%)
   patch tree reduce : 1944.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 521.81 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.5%)
Info: cfl dt = 0.003654751778006954                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8953e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.27704750947576 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0046129804210893, dt = 0.003654751778006954
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 439.11 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.7%)
Info: cfl dt = 0.0036547977545627916                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8984e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.34099478623563 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0082677321990963, dt = 0.0036547977545627916
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 440.01 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.5%)
Info: cfl dt = 0.003654844551169086                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9833e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.04721836405008 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0119225299536592, dt = 0.003654844551169086
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1534.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 422.03 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.1%)
Info: cfl dt = 0.0036548921751966973                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9176e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.72963875690411 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0155773745048282, dt = 0.0036548921751966973
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 444.25 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.1%)
Info: cfl dt = 0.003654940633974854                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9323e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.02520090135091 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0192322666800249, dt = 0.003654940633974854
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 426.37 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.8%)
Info: cfl dt = 0.003654989934790144                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8920e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.21757790958588 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0228872073139996, dt = 0.003654989934790144
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 401.09 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.9%)
Info: cfl dt = 0.0036550400848855235                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7836e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.04193417312753 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0265421972487898, dt = 0.0036550400848855235
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 439.29 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (66.0%)
Info: cfl dt = 0.0036550910914593567                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9259e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.8999237069483 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0301972373336754, dt = 0.0036550910914593567
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 410.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.7%)
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.9194e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.7712060934812 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0338523284251349, dt = 0.0036551429616644665
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.4%)
   patch tree reduce : 1693.00 ns (0.1%)
   gen split merge   : 972.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.1%)
   LB compute        : 1615.23 us (98.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.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    | 4.9072e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.52916684718966 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0375074713867993, dt = 0.0036551957026072185
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 443.36 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.2%)
Info: cfl dt = 0.0036552493213466114                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9733e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.85741771833028 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0411626670894065, dt = 0.0036552493213466114
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1562.00 ns (0.4%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 409.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.6%)
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.7016e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.40258718081371 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0448179164107532, dt = 0.003655303824893406
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 402.04 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.8%)
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.9568e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.52924243921056 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0484732202356466, dt = 0.003655359220209261
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 426.11 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.2%)
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    | 5.0059e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.5156031758781 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.052128579455856, dt = 0.0036554155142058944
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 446.08 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (63.3%)
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.9913e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.22412718341957 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0557839949700618, dt = 0.003655472713744274
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 380.41 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (66.7%)
Info: cfl dt = 0.003655530825633816                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6288e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.94635045780142 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0594394676838061, dt = 0.003655530825633816
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (0.9%)
   patch tree reduce : 1693.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 588.27 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.9%)
Info: cfl dt = 0.0036555898566316097                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9098e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.59177458155102 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.06309499850944, dt = 0.0036555898566316097
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1312.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 407.90 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.1%)
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.9529e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.45850103413798 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0667505883660715, dt = 0.0036556498134416755
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 432.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (64.2%)
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.9146e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6896092223964 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0704062381795132, dt = 0.0036557107027142184
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.1%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 454.12 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.4%)
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.9426e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.25509594665262 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0740619488822274, dt = 0.0036557725310449223
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 376.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.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    | 5.0002e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.41280421470792 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0777177214132723, dt = 0.0036558353049742603
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 376.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (64.4%)
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    | 4.9675e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.75728618841855 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0813735567182465, dt = 0.003655899030986823
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (0.3%)
   patch tree reduce : 1773.00 ns (0.1%)
   gen split merge   : 942.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.1%)
   LB compute        : 1686.68 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.6%)
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.9301e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.00892434617792 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0850294557492333, dt = 0.003655963715510664
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.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.9858e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.12798652651726 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.088685419464744, dt = 0.0036560293649166736
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 422.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (62.6%)
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.9944e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.30345570659041 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0923414488296606, dt = 0.00365609598551797
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 375.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.4%)
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.9379e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.17092139732159 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0959975448151784, dt = 0.003656163583569299
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.6%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 356.83 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.2%)
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    | 5.0296e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.01310345589076 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0996537083987477, dt = 0.003656232165266472
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 400.92 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.1%)
Info: cfl dt = 0.003656301736745815                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0110e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.64271185095447 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.103309940564014, dt = 0.003656301736745815
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.80 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.2%)
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.9991e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.40584940209064 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.10696624230076, dt = 0.003656372304083628
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.3%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 376.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (67.2%)
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.9947e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.31848649607102 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1106226146048437, dt = 0.0036564438732956794
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 399.38 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.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.9971e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.36917767437572 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1142790584781395, dt = 0.003656516450336708
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 464.97 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (63.6%)
Info: cfl dt = 0.0036565900410999498                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1348e+05 | 65536 |      2 | 1.276e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.13622875781324 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.117935574928476, dt = 0.0036565900410999498
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 372.43 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.4%)
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    | 5.0213e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.8592110525119 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.121592164969576, dt = 0.0036566646514166815
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 430.53 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.3%)
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.9539e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.50639047036701 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1252488296209926, dt = 0.0036567402870557758
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 398.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.7%)
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    | 5.0234e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.9047327835689 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1289055699080484, dt = 0.0036568169537232924
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.1%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 455.41 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.4%)
Info: cfl dt = 0.0036568946570620657                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0225e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.88852540048069 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1325623868617716, dt = 0.0036568946570620657
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 430.27 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.8%)
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.9959e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.35760700224517 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1362192815188337, dt = 0.003656973402651325
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 383.82 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.0%)
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.9670e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.77976358685142 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.139876254921485, dt = 0.0036570531960063287
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 414.14 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.3%)
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    | 5.0129e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.70323807023594 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1435333081174912, dt = 0.0036571340425780112
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 455.89 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.4%)
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    | 5.0034e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.51417878657986 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1471904421600692, dt = 0.0036572159477526547
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 421.40 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.9%)
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.9551e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.54672826338005 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1508476581078217, dt = 0.0036572989168515723
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.1%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 457.12 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.5%)
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    | 5.1157e+05 | 65536 |      2 | 1.281e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.77532762454089 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1545049570246733, dt = 0.003657382955130808
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 424.91 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.7%)
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.9971e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.3946009878171 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.158162339979804, dt = 0.0036574680677808583
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 414.90 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.4%)
Info: cfl dt = 0.0036575542599264045                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0301e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.0599765458607 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1618198080475848, dt = 0.0036575542599264045
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 365.77 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.1%)
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.9319e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.0891611072546 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1654773623075112, dt = 0.0036576415366260623
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1402.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 373.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.3%)
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    | 5.0211e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.88399315199739 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1691350038441373, dt = 0.003657729902872153
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.2%)
   patch tree reduce : 1502.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 433.21 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.2%)
Info: cfl dt = 0.003657819363590478                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9869e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.19969700563234 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1727927337470094, dt = 0.003657819363590478
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 432.08 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.0%)
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.9979e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.4236093078367 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1764505531106, dt = 0.0036579099236401266
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.4%)
   patch tree reduce : 1412.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 355.73 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (62.8%)
Info: cfl dt = 0.003658001587813278                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9176e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.81133481970528 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1801084630342402, dt = 0.003658001587813278
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 451.54 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.3%)
Info: cfl dt = 0.0036580943608350387                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0113e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.69795914691656 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1837664646220536, dt = 0.0036580943608350387
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 359.87 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.9%)
Info: cfl dt = 0.00365818824736328                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1015e+05 | 65536 |      2 | 1.285e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.51250509691405 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1874245589828887, dt = 0.00365818824736328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 381.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.9%)
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.8631e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.72447069940037 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1910827472302519, dt = 0.003658283251988494
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 438.78 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.9%)
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    | 5.0001e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.47973824401737 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1947410304822403, dt = 0.003658379379233672
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.1%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 497.96 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.7%)
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    | 5.0937e+05 | 65536 |      2 | 1.287e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.36430880230273 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.198399409861474, dt = 0.003658476633554183
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 366.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (64.6%)
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    | 5.0531e+05 | 65536 |      2 | 1.297e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.55103046120942 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2020578864950282, dt = 0.003658575019337678
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 375.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (63.4%)
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    | 5.0478e+05 | 65536 |      2 | 1.298e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.44712793743315 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2057164615143658, dt = 0.0036586745409040006
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.1%)
   patch tree reduce : 1542.00 ns (0.3%)
   gen split merge   : 1162.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 472.54 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.7%)
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.9424e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.33163320828419 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2093751360552698, dt = 0.003658775202505116
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 476.27 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (63.7%)
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    | 5.1680e+05 | 65536 |      2 | 1.268e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.86805332632966 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2130339112577748, dt = 0.0036588770083250508
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 412.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.0%)
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    | 5.0694e+05 | 65536 |      2 | 1.293e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.88863977945896 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2166927882660998, dt = 0.003658979962479843
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 377.29 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.4%)
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    | 5.0396e+05 | 65536 |      2 | 1.300e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.29374597378482 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2203517682285796, dt = 0.003659084069017512
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.4%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 361.58 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.8%)
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    | 5.0531e+05 | 65536 |      2 | 1.297e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.56621247584648 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2240108522975972, dt = 0.0036591893319180345
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 468.96 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.9%)
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    | 5.0170e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.84341173590124 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2276700416295152, dt = 0.0036592957550933346
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 426.15 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (62.6%)
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.9789e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.08183293563486 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2313293373846086, dt = 0.003659403342387289
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 1173.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 412.79 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (62.3%)
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.9235e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.97070090715425 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.234988740726996, dt = 0.0036595120975757406
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 410.50 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.1%)
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    | 5.0395e+05 | 65536 |      2 | 1.300e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.30564639791469 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2386482528245717, dt = 0.003659622024366522
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.5%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 374.94 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.2%)
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    | 5.1856e+05 | 65536 |      2 | 1.264e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.24479649113468 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2423078748489382, dt = 0.003659733126399501
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 387.58 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.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    | 5.0550e+05 | 65536 |      2 | 1.296e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.6225705859649 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2459676079753377, dt = 0.003659845407246617
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 417.01 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (69.0%)
Info: cfl dt = 0.003659958870411957                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9870e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.25941672159243 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2496274533825842, dt = 0.003659958870411957
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 389.20 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.1%)
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    | 5.1001e+05 | 65536 |      2 | 1.285e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.53562758924079 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2532874122529962, dt = 0.003660073519331811
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 374.05 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.3%)
Info: cfl dt = 0.0036601893573747642                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9376e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.27324770128783 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.256947485772328, dt = 0.0036601893573747642
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.1%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 475.74 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.2%)
Info: cfl dt = 0.003660306387841783                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9760e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.04791806315026 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2606076751297026, dt = 0.003660306387841783
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 1133.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 379.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (63.2%)
Info: cfl dt = 0.0036604246139663203                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9106e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.73552599590032 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2642679815175444, dt = 0.0036604246139663203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 485.89 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.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    | 5.0349e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.23800120272061 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2679284061315108, dt = 0.0036605440389144255
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.1%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 473.91 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.1%)
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    | 5.0491e+05 | 65536 |      2 | 1.298e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.52711217402836 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2715889501704252, dt = 0.003660664665784865
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 407.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.6%)
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.9858e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.2578752033856 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.27524961483621, dt = 0.0036607864976092586
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.1%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.2%)
   LB compute        : 471.02 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.0%)
Info: cfl dt = 0.003660909537352213                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9569e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.67889500392707 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2789104013338193, dt = 0.003660909537352213
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 398.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.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    | 4.9750e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.04743507384157 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2825713108711716, dt = 0.0036610337879114762
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 379.30 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.0%)
Info: cfl dt = 0.003661159252118095                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9944e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.43999542966507 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.286232344659083, dt = 0.003661159252118095
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 444.14 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.7%)
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    | 5.0215e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.98936948097204 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2898935039112012, dt = 0.00366128593273658
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 375.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.5%)
Info: cfl dt = 0.003661413832465087                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9007e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.5640144938992 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2935547898439377, dt = 0.003661413832465087
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 377.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.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    | 4.9678e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.91514961662483 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2972162036764028, dt = 0.0036615429539355927
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.1%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 506.46 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.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    | 4.9803e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.17121431887398 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3008777466303383, dt = 0.0036616732997140954
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 432.93 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (63.7%)
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.9556e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.67688534850544 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3045394199300524, dt = 0.0036618048723008104
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 381.88 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.4%)
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.9802e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.17706810405721 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3082012248023531, dt = 0.003661937674130379
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.40 us   (4.8%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 412.22 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.7%)
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.9342e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.25529425066289 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3118631624764836, dt = 0.0036620717075720828
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1733.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 378.95 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.3%)
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.9740e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.05905235006279 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3155252341840558, dt = 0.0036622069749300715
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 438.95 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.0%)
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.8364e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.29468658064575 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.319187441158986, dt = 0.003662343478443584
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 421.89 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.6%)
Info: cfl dt = 0.003662481220287196                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9683e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.95147860858549 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3228497846374294, dt = 0.003662481220287196
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 411.42 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.1%)
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.9521e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.62849671489806 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3265122658577166, dt = 0.0036626202025710555
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 411.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.7%)
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.9165e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.91604868925344 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3301748860602878, dt = 0.003662760427341138
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.3%)
   patch tree reduce : 1643.00 ns (0.1%)
   gen split merge   : 952.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.1%)
   LB compute        : 1664.90 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.7%)
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    | 4.8296e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.17255729947513 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.333837646487629, dt = 0.003662901896579501
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.6%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.3%)
   LB compute        : 357.66 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 20.18 us   (5.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.0%)
Info: cfl dt = 0.00366304461220455                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7835e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.24745964100129 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3375005483842084, dt = 0.00366304461220455
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.1%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 497.33 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.7%)
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    | 5.1050e+05 | 65536 |      2 | 1.284e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.72057349157386 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.341163592996413, dt = 0.0036631885760713048
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.5%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 352.78 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (62.7%)
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    | 5.2120e+05 | 65536 |      2 | 1.257e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.87836375856581 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3448267815724844, dt = 0.003663333789971679
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 380.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.7%)
Info: cfl dt = 0.0036634802556347553                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1228e+05 | 65536 |      2 | 1.279e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.08664050301307 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.348490115362456, dt = 0.0036634802556347553
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 531.84 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.4%)
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.8955e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.51723038031152 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3521535956180908, dt = 0.0036636279747270777
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 437.46 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.8%)
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.8796e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.20084365682712 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3558172235928179, dt = 0.003663776948852943
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.1%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 463.88 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.6%)
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.7650e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.89956915689972 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3594810005416709, dt = 0.0036639271795546944
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 411.26 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.5%)
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.9240e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.10224705795927 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3631449277212255, dt = 0.0036640786683130285
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 460.92 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.1%)
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.9423e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.47562699563603 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3668090063895386, dt = 0.0036642314165473014
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 419.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.9%)
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    | 5.0490e+05 | 65536 |      2 | 1.298e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.6277612119575 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.370473237806086, dt = 0.003664385425615841
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 414.79 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.9%)
Info: cfl dt = 0.0036645406968162635                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9196e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.02704832582796 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3741376232317017, dt = 0.0036645406968162635
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1273.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 406.85 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.8%)
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    | 4.9844e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.33499316663439 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.377802163928518, dt = 0.0036646972313857983
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 417.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.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    | 5.0224e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.10488965439843 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.381466861159904, dt = 0.0036648550305016093
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 2.31 us    (0.6%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 393.85 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.8%)
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    | 5.0366e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.39505338111078 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3851317161904055, dt = 0.0036650140952811296
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.2%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 461.10 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.3%)
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.9586e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.82975847989073 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3887967302856867, dt = 0.003665174426782391
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 412.90 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.4%)
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.8604e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.85539596740749 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3924619047124691, dt = 0.0036653360260043683
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 388.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.6%)
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.9429e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.52104922055422 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3961272407384735, dt = 0.003665498893887315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1964.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 388.88 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.7%)
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.9098e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.85987404621584 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3997927396323608, dt = 0.0036656630313131166
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.12 us   (4.4%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 449.25 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (64.6%)
Info: cfl dt = 0.0036658284391056298                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9376e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.42435478192088 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.403458402663674, dt = 0.0036658284391056298
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (0.3%)
   patch tree reduce : 1904.00 ns (0.1%)
   gen split merge   : 1092.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.0%)
   LB compute        : 1710.20 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.9%)
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.8975e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.62028844645948 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4071242311027796, dt = 0.003665995118031045
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 371.80 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.9%)
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.9392e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.4649285642541 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4107902262208107, dt = 0.0036661630687982363
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 454.98 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.2%)
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.9204e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.09034466549268 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.414456389289609, dt = 0.0036663322920591234
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 384.18 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.8%)
Info: cfl dt = 0.00366650278840903                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9754e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.2029861225099 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.418122721581668, dt = 0.00366650278840903
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 401.25 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.2%)
Info: cfl dt = 0.003666674558387054                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9265e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.22232782476593 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4217892243700772, dt = 0.003666674558387054
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 392.87 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.9%)
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.9464e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.62765158758657 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4254558989284642, dt = 0.0036668476024764307
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 409.84 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.0%)
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.9316e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.33567031728927 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4291227465309406, dt = 0.0036670219211049036
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.2%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 440.32 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.4%)
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.9678e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.06879454252238 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4327897684520454, dt = 0.0036671975146451014
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 377.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (66.2%)
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.8762e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.22805025948738 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4364569659666906, dt = 0.0036673743834149067
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 409.67 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (70.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.9544e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.808795542535 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4401243403501054, dt = 0.0036675525276778373
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 1272.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 402.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.1%)
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    | 5.0782e+05 | 65536 |      2 | 1.291e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.30698600288156 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4437918928777833, dt = 0.003667731947643427
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 369.35 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.0%)
Info: cfl dt = 0.0036679126434676036                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9717e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.16628092241169 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4474596248254268, dt = 0.0036679126434676036
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.4%)
   patch tree reduce : 2.22 us    (0.5%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 438.76 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.8%)
Info: cfl dt = 0.0036680946152530757                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7807e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.32456944856884 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4511275374688943, dt = 0.0036680946152530757
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 460.63 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.2%)
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.8805e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.33974500832302 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4547956320841473, dt = 0.0036682778630497148
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 388.88 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.4%)
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.8529e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.78865022837485 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.458463909947197, dt = 0.003668462386854947
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.0%)
   patch tree reduce : 1614.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 497.20 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.3%)
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.9804e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.36142286606324 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.462132372334052, dt = 0.0036686481866141383
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 455.53 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.5%)
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.9337e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.42599605864564 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4658010205206662, dt = 0.003668835262220985
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 400.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.5%)
Info: cfl dt = 0.003669023613517908                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9388e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.53414838730919 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4694698557828871, dt = 0.003669023613517908
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 378.29 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.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.9151e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.06164964532924 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.473138879396405, dt = 0.003669213240296441
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 379.51 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (64.8%)
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.8970e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.70159815329544 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4768080926367015, dt = 0.0036694041422976327
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.3%)
   LB compute        : 374.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.6%)
Info: cfl dt = 0.0036695963192124336                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9636e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.04871170245278 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.480477496778999, dt = 0.0036695963192124336
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.1%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 487.43 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.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.8479e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.72203930076287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4841470930982115, dt = 0.0036697897706820977
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 389.90 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.1%)
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.9227e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.23633352793306 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4878168828688936, dt = 0.00366998449629858
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 395.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.1%)
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.9909e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.61555156749965 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4914868673651922, dt = 0.003670180495604932
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 381.86 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.1%)
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    | 5.0196e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.19940740273223 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4951570478607972, dt = 0.003670377768095703
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 461.17 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (67.7%)
Info: cfl dt = 0.0036705763132173384                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9590e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.98240624804635 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.498827425628893, dt = 0.0036705763132173384
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.1%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 442.20 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.1%)
Info: cfl dt = 0.0036707761303685815                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9860e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.53237829977304 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5024980019421104, dt = 0.0036707761303685815
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 365.33 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.2%)
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    | 5.0016e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.85233856007336 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5061687780724788, dt = 0.003670977218900875
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 446.97 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.8%)
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    | 5.0346e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.52386603126267 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5098397552913798, dt = 0.003671179578118759
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 427.23 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.9%)
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.8970e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.75422686493577 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5135109348694986, dt = 0.0036713832072802753
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (0.9%)
   patch tree reduce : 1874.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 545.29 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (68.6%)
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.9857e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.54815333760126 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.517182318076779, dt = 0.0036715881055973715
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.2%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 437.58 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.8%)
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.9471e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.7758270468716 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5208539061823763, dt = 0.0036717942722362994
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 433.34 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.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.8453e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.72862683889618 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5245257004546127, dt = 0.003672001706318019
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 440.00 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 22.98 us   (4.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (67.8%)
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.8557e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.9440954930842 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5281977021609308, dt = 0.0036722104069186
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1343.00 ns (0.3%)
   LB compute        : 410.45 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.0%)
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    | 5.0297e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.45844033951265 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5318699125678494, dt = 0.0036724203730696277
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 445.42 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.9%)
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.9555e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.96905242376793 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.535542332940919, dt = 0.003672631603758601
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.2%)
   LB compute        : 438.13 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.7%)
Info: cfl dt = 0.003672844097929337                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8837e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.52549538105512 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5392149645446775, dt = 0.003672844097929337
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 372.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (67.9%)
Info: cfl dt = 0.003673057854482374                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9622e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.11416119030524 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5428878086426068, dt = 0.003673057854482374
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 463.02 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (68.8%)
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.9693e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.26436987121907 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5465608664970891, dt = 0.0036732728722753713
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 392.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.7%)
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.9463e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.80690578239313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5502341393693646, dt = 0.003673489150123513
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 467.02 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.1%)
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.9028e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.9331276366995 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5539076285194882, dt = 0.0036737066867999057
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 431.65 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.6%)
Info: cfl dt = 0.0036739254810359834                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9446e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.78275066838111 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5575813352062882, dt = 0.0036739254810359834
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.3%)
   LB compute        : 400.79 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.2%)
Info: cfl dt = 0.003674145531521905                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9287e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.46863424983778 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5612552606873242, dt = 0.003674145531521905
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1733.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 376.19 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.6%)
Info: cfl dt = 0.0036743668369069557                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6142e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.127547471323 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5649294062188461, dt = 0.0036743668369069557
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 409.03 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
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    | 4.7052e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.96838234079651 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5686037730557532, dt = 0.0036745893957999434
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 410.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.8%)
Info: cfl dt = 0.003674813206769599                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9502e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.9213865803967 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.572278362451553, dt = 0.003674813206769599
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 407.56 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.1%)
Info: cfl dt = 0.0036750382683449745                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9018e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.95020866630948 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5759531756583227, dt = 0.0036750382683449745
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 435.73 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.5%)
Info: cfl dt = 0.00367526457901584                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9412e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.75059494082394 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5796282139266677, dt = 0.00367526457901584
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 407.68 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (67.3%)
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    | 5.0260e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.46921979450813 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5833034785056836, dt = 0.0036754921372330793
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1703.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 395.66 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.0%)
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    | 5.0291e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.53888233949901 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5869789706429167, dt = 0.003675720941409082
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 381.89 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.9%)
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    | 5.0930e+05 | 65536 |      2 | 1.287e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.8350491080366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5906546915843258, dt = 0.0036759509899181426
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.1%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 484.17 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.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    | 4.8394e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.71984551074284 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.594330642574244, dt = 0.0036761822810968525
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 412.41 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.0%)
Info: cfl dt = 0.003676414813244491                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8881e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.71067153991385 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.598006824855341, dt = 0.003676414813244491
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 443.12 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.2%)
Info: cfl dt = 0.003676648584623416                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9022e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.00096150821263 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6016832396685854, dt = 0.003676648584623416
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 394.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.3%)
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    | 4.9233e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.4332696795834 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6053598882532087, dt = 0.003676883593459459
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 412.76 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.1%)
Info: cfl dt = 0.0036771198379423084                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9147e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.26571951180024 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6090367718466683, dt = 0.0036771198379423084
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 410.54 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.8%)
Info: cfl dt = 0.0036773573162258975                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5902e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.71787367966547 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6127138916846107, dt = 0.0036773573162258975
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.2%)
   patch tree reduce : 1542.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 450.93 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.7%)
Info: cfl dt = 0.003677596026428797                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8917e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.81466791421185 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6163912490008365, dt = 0.003677596026428797
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.5%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 367.43 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.9%)
Info: cfl dt = 0.003677835966634595                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9121e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.23336038433263 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6200688450272653, dt = 0.003677835966634595
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 419.83 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.8%)
Info: cfl dt = 0.0036780771348922828                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8411e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.80526449548626 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6237466809938998, dt = 0.0036780771348922828
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.1%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 479.85 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.6%)
Info: cfl dt = 0.003678319529216638                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8044e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.06925146038456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6274247581287922, dt = 0.003678319529216638
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.1%)
   patch tree reduce : 1614.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 453.90 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.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    | 4.9149e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.30883733536047 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6311030776580089, dt = 0.0036785631475886055
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 434.55 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (66.7%)
Info: cfl dt = 0.0036788079879556783                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8521e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0465924201687 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6347816408055975, dt = 0.0036788079879556783
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.2%)
   LB compute        : 482.45 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (64.2%)
Info: cfl dt = 0.0036790540482322734                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8405e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.81885781681957 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6384604487935532, dt = 0.0036790540482322734
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 433.68 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.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    | 4.8277e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.56530590294051 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6421395028417856, dt = 0.003679301326300112
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.2%)
   LB compute        : 543.27 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.9%)
Info: cfl dt = 0.003679549820008597                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8692e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.41072148489623 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6458188041680857, dt = 0.003679549820008597
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 430.18 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (63.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    | 5.0060e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.18317178504681 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6494983539880943, dt = 0.0036797995271751795
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 512.21 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.5%)
Info: cfl dt = 0.003680050445585738                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0821e+05 | 65536 |      2 | 1.290e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.72883923294292 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6531781535152694, dt = 0.003680050445585738
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.2%)
   LB compute        : 425.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.8%)
Info: cfl dt = 0.0036803025729949495                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1265e+05 | 65536 |      2 | 1.278e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.63225369275898 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6568582039608553, dt = 0.0036803025729949495
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 419.84 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.5%)
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    | 5.0946e+05 | 65536 |      2 | 1.286e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.99499052176361 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6605385065338503, dt = 0.0036805559071266566
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 454.39 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.7%)
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.7702e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4431490920902 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.664219062440977, dt = 0.003680810445674232
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 412.11 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.2%)
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.8633e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.33282930619441 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6678998728866512, dt = 0.0036810661863009514
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.4%)
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.9063e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.2093718416187 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6715809390729521, dt = 0.003681323126640354
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 444.80 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.1%)
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.8391e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.85675231483586 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6752622621995925, dt = 0.0036815812642966073
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1653.00 ns (0.3%)
   gen split merge   : 1192.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 472.03 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (70.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.9048e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.19318721336317 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.678943843463889, dt = 0.0036818405968448657
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 399.39 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (67.2%)
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    | 5.0406e+05 | 65536 |      2 | 1.300e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.9466604231057 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6826256840607339, dt = 0.0036821011218316304
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1533.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 391.39 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.4%)
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.9955e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.0404970504814 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6863077851825654, dt = 0.0036823628367751078
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 434.09 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.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.9483e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.09323591944178 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6899901480193404, dt = 0.003682625739165565
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 418.62 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.0%)
Info: cfl dt = 0.003682889826465683                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4503e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.02537159999225 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.693672773758506, dt = 0.003682889826465683
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.2%)
   patch tree reduce : 1924.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 478.99 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (63.7%)
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.9832e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.81273652140928 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6973556635849716, dt = 0.00368315509611091
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 376.73 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (63.7%)
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.9319e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.78290032657735 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7010388186810825, dt = 0.0036834215455098123
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 421.43 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.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.8692e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.52216915147959 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7047222402265922, dt = 0.0036836891720444177
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 418.96 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (64.6%)
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.9081e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.31495789190366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7084059293986367, dt = 0.003683957973070569
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 382.00 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.1%)
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.8975e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.10866500145546 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7120898873717072, dt = 0.0036842279459182617
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1563.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 378.56 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (66.9%)
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.8693e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.54527442036546 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7157741153176254, dt = 0.003684499087891993
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 377.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (63.9%)
Info: cfl dt = 0.0036847713962710987                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9568e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.3225568664706 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7194586144055173, dt = 0.0036847713962710987
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 476.19 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.3%)
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.8949e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.0776566626404 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7231433858017884, dt = 0.0036850448683100933
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.0%)
   patch tree reduce : 1633.00 ns (0.3%)
   gen split merge   : 1202.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 492.07 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.0%)
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.9120e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.43118518930446 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7268284306700985, dt = 0.003685319501239005
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.1%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 472.92 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.9%)
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.9119e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.43744395388076 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7305137501713375, dt = 0.003685595292263715
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.0%)
   patch tree reduce : 1663.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.2%)
   LB compute        : 525.25 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.8%)
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.8137e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.45647048530789 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.734199345463601, dt = 0.0036858722385662854
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 403.78 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
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.8969e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.14770011884991 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7378852177021673, dt = 0.0036861503373052922
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 384.38 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.1%)
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.8852e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.91886789342438 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7415713680394727, dt = 0.0036864295856161564
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 466.92 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.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    | 4.8203e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.6115624787691 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7452577976250887, dt = 0.0036867099806114673
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 384.75 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (72.0%)
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.9551e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.34856069971524 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7489445076057002, dt = 0.00368699151938131
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 403.29 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.2%)
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.8725e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6836555757982 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7526314991250815, dt = 0.0036872741989935867
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 386.66 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (63.0%)
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.8638e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.51590352138932 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.756318773324075, dt = 0.003687558016494338
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 376.94 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.7%)
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.7549e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.31740256983859 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7600063313405694, dt = 0.003687842968908063
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.1%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 462.04 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.3%)
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.8606e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.46484690640153 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7636941743094774, dt = 0.003688129053238035
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.1%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 458.02 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (63.7%)
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.9713e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.71583654579315 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7673823033627154, dt = 0.003688416266466617
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.1%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 467.97 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.8%)
Info: cfl dt = 0.003688704605555571                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7901e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.05182764830687 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.771070719629182, dt = 0.003688704605555571
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 437.29 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.9%)
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.9512e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.3250859877297 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7747594242347375, dt = 0.0036889940674463754
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 475.63 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (66.0%)
Info: cfl dt = 0.0036892846490605255                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8536e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.3536005797524 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7784484183021838, dt = 0.0036892846490605255
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 427.21 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.9%)
Info: cfl dt = 0.0036895763472998464                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8407e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.10155110439041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7821377029512444, dt = 0.0036895763472998464
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 408.70 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.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    | 4.8107e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.50023566935737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7858272792985443, dt = 0.0036898691590467945
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.1%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 484.75 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (63.6%)
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    | 4.9074e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.46931100501436 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7895171484575911, dt = 0.0036901630811647618
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 379.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.1%)
Info: cfl dt = 0.0036904581104983693                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8134e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.57032563768406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.793207311538756, dt = 0.0036904581104983693
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.1%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 461.95 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.3%)
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.7547e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.38913681701642 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7968977696492543, dt = 0.0036907542438737767
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.1%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 1182.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 478.31 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.0%)
Info: cfl dt = 0.003691051478098968                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8440e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.20743732608152 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.800588523893128, dt = 0.003691051478098968
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 367.01 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.8%)
Info: cfl dt = 0.003691349809964053                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8689e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.72010980780955 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.804279575371227, dt = 0.003691349809964053
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 431.58 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.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.8213e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.76299447838554 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.807970925181191, dt = 0.003691649236241552
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 372.62 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (62.9%)
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.9446e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.2713060892689 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8116625744174326, dt = 0.0036919497536866937
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 412.62 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.9%)
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.6218e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.73304229895867 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8153545241711193, dt = 0.0036922513590376942
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 430.55 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.8%)
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.4767e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.7976395787565 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.819046775530157, dt = 0.003692554049016049
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 374.05 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.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.6089e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.48608230028921 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.822739329579173, dt = 0.0036928578203268138
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 394.09 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.9%)
Info: cfl dt = 0.0036931626696588868                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8398e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.17722543761033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8264321873994998, dt = 0.0036931626696588868
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 447.83 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.2%)
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    | 4.7178e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.71160871093342 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8301253500691586, dt = 0.003693468593685288
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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    (2.1%)
   patch tree reduce : 3.98 us    (0.9%)
   gen split merge   : 1874.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 2.26 us    (0.5%)
   LB compute        : 407.32 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.5%)
Info: cfl dt = 0.0036937755890634355                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7861e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.10364257191631 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.833818818662844, dt = 0.0036937755890634355
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.1%)
   patch tree reduce : 1694.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 474.30 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.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.8777e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.97060507152284 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8375125942519073, dt = 0.00369408365243542
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 409.29 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.6%)
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.7891e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.18184546477679 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8412066779043428, dt = 0.003694392780428279
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 410.72 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.7%)
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.9918e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.30241854255196 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.844901070684771, dt = 0.0036947029696542703
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 413.16 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (65.0%)
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.8962e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.37090657030376 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8485957736544254, dt = 0.003695014216711135
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.26 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.4%)
Info: cfl dt = 0.0036953265181823673                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7793e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0079385338136 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8522907878711365, dt = 0.0036953265181823673
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.2%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 441.37 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.1%)
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.8735e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.92814678254015 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8559861143893188, dt = 0.003695639870637481
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1634.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.2%)
   LB compute        : 466.60 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (63.7%)
Info: cfl dt = 0.003695954270632268                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8939e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.3496660858403 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8596817542599564, dt = 0.003695954270632268
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 430.96 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.5%)
Info: cfl dt = 0.0036962697147090644                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6728e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.86981082342464 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8633777085305887, dt = 0.0036962697147090644
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 377.09 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.8%)
Info: cfl dt = 0.003696586199397                                         [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7921e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.29948319163321 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8670739782452979, dt = 0.003696586199397
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1243.00 ns (0.3%)
   LB compute        : 462.55 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.6%)
Info: cfl dt = 0.0036969037212122658                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8640e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.76846167554946 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8707705644446948, dt = 0.0036969037212122658
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.0%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 463.74 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.0%)
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    | 4.8817e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.13598559241689 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.874467468165907, dt = 0.0036972222766583577
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 407.93 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.6%)
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    | 4.8496e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.49206501738675 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8781646904425653, dt = 0.0036975418622263376
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.1%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.2%)
   LB compute        : 482.08 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.5%)
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    | 4.8486e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.48168867641876 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8818622323047915, dt = 0.003697862474395077
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 437.48 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.8%)
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    | 4.5494e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.41137045486558 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8855600947791866, dt = 0.0036981841096315094
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.1%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 459.44 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.6%)
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    | 4.8464e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.45257495243861 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8892582788888181, dt = 0.003698506764390874
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1594.00 ns (0.3%)
   gen split merge   : 1202.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 472.25 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.3%)
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    | 4.8919e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.38706682275601 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.892956785653209, dt = 0.003698830435116958
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 385.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (63.7%)
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    | 4.7500e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.51222574619293 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.896655616088326, dt = 0.0036991551182423434
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 468.34 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.4%)
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    | 4.6541e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.57104897298223 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9003547712065683, dt = 0.003699480810188647
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.3%)
   patch tree reduce : 1523.00 ns (0.1%)
   gen split merge   : 1122.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.1%)
   LB compute        : 1766.68 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (63.0%)
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    | 4.7222e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.96452403158587 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.904054252016757, dt = 0.003699807507366751
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.1%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 468.90 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.4%)
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    | 4.9323e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.24158294180238 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9077540595241236, dt = 0.003700135206177046
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 429.78 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.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    | 4.8900e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.39099751657213 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9114541947303005, dt = 0.0037004639030096633
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 390.66 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.1%)
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    | 4.9009e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.62255376496084 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9151546586333101, dt = 0.0037007935942447046
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 382.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.6%)
Info: cfl dt = 0.0037011242762524754                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9214e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.04726248947578 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.918855452227555, dt = 0.0037011242762524754
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 380.52 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.4%)
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    | 4.8557e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.721029267161 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9225565765038075, dt = 0.003701455945393709
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 381.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.1%)
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    | 4.9205e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.04651687148151 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9262580324492011, dt = 0.003701788598019797
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 454.90 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.4%)
Info: cfl dt = 0.0037021222304730083                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9134e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.91115991417452 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9299598210472209, dt = 0.0037021222304730083
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.5%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1173.00 ns (0.3%)
   LB compute        : 370.91 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (66.2%)
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    | 4.9067e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.78495364653199 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9336619432776938, dt = 0.0037024568390867157
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 437.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.2%)
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    | 5.0560e+05 | 65536 |      2 | 1.296e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.83052573212635 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9373644001167805, dt = 0.0037027924201856123
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.1%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 470.88 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.8%)
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    | 5.2354e+05 | 65536 |      2 | 1.252e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.48869490502582 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.941067192536966, dt = 0.003703128970085931
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.5%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 361.61 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.2%)
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    | 5.1885e+05 | 65536 |      2 | 1.263e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.54441333293751 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.944770321507052, dt = 0.003703466485095662
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 383.74 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.6%)
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    | 5.2271e+05 | 65536 |      2 | 1.254e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 106.33976823202144 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9484737879921477, dt = 0.0037038049615147647
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 412.30 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.8%)
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    | 5.0813e+05 | 65536 |      2 | 1.290e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.38136810650325 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9521775929536624, dt = 0.003704144395635381
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 430.49 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.8%)
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    | 5.1127e+05 | 65536 |      2 | 1.282e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.03134474515578 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9558817373492978, dt = 0.0037044847837420475
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.6%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 373.43 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (68.5%)
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    | 5.2027e+05 | 65536 |      2 | 1.260e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 105.87248933934444 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9595862221330398, dt = 0.0037048261221118988
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.1%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 443.57 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.0%)
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    | 5.0625e+05 | 65536 |      2 | 1.295e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.0271826519823 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9632910482551518, dt = 0.00370516840701488
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 356.35 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.2%)
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    | 5.0345e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.4677871088536 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9669962166621666, dt = 0.0037055116347139484
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 424.76 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.2%)
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    | 5.1462e+05 | 65536 |      2 | 1.273e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.75017838538793 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9707017282968806, dt = 0.0037058558014652744
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.6%)
   patch tree reduce : 1744.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 354.10 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.5%)
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.4552e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.6939698928368 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.974407584098346, dt = 0.0037062009035184473
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 444.05 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.0%)
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.8444e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.62686997630286 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9781137850018644, dt = 0.0037065469371166692
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 405.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.8%)
Info: cfl dt = 0.0037068938984969567                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8181e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.09903075644381 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.981820331938981, dt = 0.0037068938984969567
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 1203.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 467.67 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.8%)
Info: cfl dt = 0.0037072417838903324                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8492e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.74194048775057 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.985527225837478, dt = 0.0037072417838903324
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.1%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.2%)
   LB compute        : 457.52 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.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    | 4.9071e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.929607293505 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9892344676213685, dt = 0.003707590589522021
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 448.14 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.5%)
Info: cfl dt = 0.003707940311611637                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8595e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.97078770116339 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9929420582108905, dt = 0.003707940311611637
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 439.00 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (65.0%)
Info: cfl dt = 0.003708290946373381                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9347e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.51159440402277 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9966499985225021, dt = 0.003350001477497866
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 443.11 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.1%)
Info: cfl dt = 0.0037086085262296423                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9494e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.07895281266723 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 938.2416604220001 (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.45 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.59 us    (55.9%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1984.00 ns (0.4%)
   patch tree reduce : 1002.00 ns (0.2%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 781.00 ns  (0.2%)
   LB compute        : 432.17 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (63.1%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1202.00 ns (0.3%)
   patch tree reduce : 400.00 ns  (0.1%)
   gen split merge   : 361.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 290.00 ns  (0.1%)
   LB compute        : 351.42 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 1873.00 ns (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (62.4%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1423.00 ns (0.4%)
   patch tree reduce : 451.00 ns  (0.1%)
   gen split merge   : 380.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 260.00 ns  (0.1%)
   LB compute        : 323.64 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 1854.00 ns (0.6%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.31 us   (2.0%)
   patch tree reduce : 2.67 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 534.08 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (64.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4009e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.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 :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 492.32 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 us    (73.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.7491e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.29694670408774 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003652931508385532, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 399.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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    | 4.6879e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.06904354462986 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007305863016771064, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 452.01 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.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.7549e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.4123759037451 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010958794525156596, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 405.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 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.7530e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.37537267673314 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014611726033542128, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 399.86 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.8107e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.53305041106312 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01826465754192766, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.42 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 415.20 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7835e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.98598139716624 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021917589050313192, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 402.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7418e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.15043511864972 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025570520558698726, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 474.81 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 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.8331e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.98254662107273 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02922345206708426, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 410.30 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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    | 5.1112e+05 | 65536 |      2 | 1.282e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.56144845257755 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03287638357546979, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 373.06 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0460e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.25437285132567 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036529315083855325, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 363.45 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.9585e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.49779583590659 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04018224659224086, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 438.76 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0605e+05 | 65536 |      2 | 1.295e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.54497560612357 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04383517810062639, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 369.10 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (64.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0948e+05 | 65536 |      2 | 1.286e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.23238956923925 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047488109609011925, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1523.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 387.02 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.36 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.9852e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.03326388366501 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05114104111739746, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 436.18 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.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.7493e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.3006228027684 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05479397262578299, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 378.76 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0125e+05 | 65536 |      2 | 2.175e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.44919311670109 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.058446904134168524, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 368.19 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (65.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8018e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.35361980030827 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06209983564255406, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 418.67 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.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.8344e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0068231667914 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06575276715093958, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 408.71 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.5580e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.46248853594062 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06940569865932511, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 434.25 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.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.8021e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.36033907496306 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07305863016771064, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 438.12 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.7384e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.08187625903018 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07671156167609616, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 416.47 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8563e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.44756393260352 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08036449318448169, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.4%)
   patch tree reduce : 1994.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 430.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.7979e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.27489827786546 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08401742469286722, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1153.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 407.23 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.7771e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.85870940819042 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08767035620125274, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.6%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 369.57 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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    | 4.7884e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.08415903674559 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09132328770963827, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 452.41 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8995e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.31350416103116 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0949762192180238, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 432.91 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.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.8444e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.20938122407534 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09862915072640932, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.5%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 382.87 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.21 us   (93.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.7728e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.7723754540351 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10228208223479485, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 380.75 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8286e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.89158663638997 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10593501374318037, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.97 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (67.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.8691e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.70379539338424 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1095879452515659, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.6%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 380.93 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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    | 4.9323e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.9722836750193 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11324087675995143, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.5%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 380.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9205e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.73514586755255 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11689380826833695, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 402.71 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8645e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.61198527785146 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12054673977672248, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 465.74 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.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.8201e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.72037319421774 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.124199671285108, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 442.27 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.8789e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.9009157436593 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12785260279349353, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 396.20 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.7107e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.52471101301467 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13150553430187906, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 469.37 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 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    | 4.8225e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.76886557083137 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13515846581026458, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.02 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7915e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.14675824678854 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1388113973186501, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 411.21 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 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    | 4.7503e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.3201931497827 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14246432882703564, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 400.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4355e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.0037607019839 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14611726033542116, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 394.87 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.8050e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.41718502913024 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1497701918438067, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 385.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 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.9177e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.67983071386739 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15342312335219221, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 376.13 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8910e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.143284300658 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15707605486057774, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 420.87 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.9137e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.59943211807324 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16072898636896327, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 393.41 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (67.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.7274e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.86145119669511 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1643819178773488, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 386.04 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7059e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.42845058300338 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16803484938573432, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.0%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 504.37 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.9263e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.8518196398687 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17168778089411985, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 398.28 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.70 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.9539e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.4062441289508 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17534071240250537, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 393.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.9398e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.12245144808199 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1789936439108909, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (1.5%)
   patch tree reduce : 1572.00 ns (0.3%)
   gen split merge   : 1212.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 466.89 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.6956e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.22259346645842 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18264657541927642, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (0.3%)
   patch tree reduce : 2.02 us    (0.1%)
   gen split merge   : 862.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.1%)
   LB compute        : 1760.07 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (69.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.6550e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.40759184946951 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18629950692766195, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 386.67 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (63.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8181e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.68171108154877 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18995243843604748, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 383.32 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8186e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.6909828754014 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.193605369944433, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.60 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6968e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.24596368826394 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19725830145281853, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 408.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.7327e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.96735871069647 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20091123296120406, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 420.06 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.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.7814e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.94408895570243 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20456416446958958, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 395.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.7175e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.66111555631018 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2082170959779751, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 387.63 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8634e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.59016194675137 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21187002748636063, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 423.78 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.7339e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.99151570179728 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21552295899474616, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.2%)
   patch tree reduce : 1572.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 452.10 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.8378e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.07660124501676 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2191758905031317, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 436.46 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 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.9079e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.48199376102696 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2228288220115172, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.9%)
   patch tree reduce : 1853.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 669.83 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8181e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.68087021787036 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22648175351990274, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 391.66 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (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.9133e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.59058603277678 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23013468502828827, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 1302.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 370.61 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8179e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.67672581948631 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2337876165366738, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 401.11 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.7253e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.81879441821509 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23744054804505932, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 472.10 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7529e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.37159605132022 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24109347955344484, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 381.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.8006e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.33053909749493 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24474641106183037, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 382.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0817e+05 | 65536 |      2 | 1.290e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.97021844480741 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2483993425702159, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 394.55 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1062e+05 | 65536 |      2 | 1.283e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.46258362367851 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2520522740786014, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 379.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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    | 5.0599e+05 | 65536 |      2 | 1.295e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.53322640536543 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25570520558698695, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 377.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (65.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6519e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.3459591634217 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2593581370953725, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1643.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 456.37 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8019e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.35643532849423 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.263011068603758, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 517.58 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7582e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.47921758072563 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26666400011214353, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 399.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (63.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8467e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.25493724741662 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27031693162052906, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 396.58 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (67.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.7810e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.93680120368346 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2739698631289146, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 393.76 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 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    | 4.8915e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.15451109177978 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2776227946373001, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 360.10 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0285e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.90341455282523 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28127572614568563, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 1253.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 381.34 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.8459e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.2381722852135 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28492865765407116, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 438.72 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.8155e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.62813188860086 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2885815891624567, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.2%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 399.85 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (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    | 4.7319e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.95143478351343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2922345206708422, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 374.10 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.8256e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.83206595940347 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29588745217922774, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 436.26 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.8143e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.60545955955578 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29954038368761327, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 372.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.8199e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.71612582616395 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3031933151959988, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.66 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7705e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.72507638421635 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3068462467043843, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 424.20 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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    | 4.9442e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.21057155270326 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31049917821276984, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 433.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.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.6859e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.02795548825203 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31415210972115537, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 374.39 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.6368e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.04355382287467 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3178050412295409, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 410.87 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
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.7658e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.63168853378941 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3214579727379264, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 407.34 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 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.7337e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.98797867701295 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32511090424631195, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1021.00 ns (0.3%)
   LB compute        : 387.81 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.70 us   (94.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.6000e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.3045064068628 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3287638357546975, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 419.69 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.7%)
Info: cfl dt = 0.003652931508385533                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6801e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.91190882495714 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.332416767263083, dt = 0.003652931508385533
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 414.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.5%)
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.6035e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.37534149296573 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33606969877146853, dt = 0.003652931508385534
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1633.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 386.04 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.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    | 4.8334e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.98715790068296 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33972263027985405, dt = 0.003652931508385534
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 379.97 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.9%)
Info: cfl dt = 0.003652931508385534                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6433e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.17300874801705 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3433755617882396, dt = 0.003652931508385534
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1473.00 ns (0.3%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 411.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.0%)
Info: cfl dt = 0.0036529315083855345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6934e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.1783805272222 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3470284932966251, dt = 0.0036529315083855345
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 398.46 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.1%)
Info: cfl dt = 0.003652931508385536                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7032e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.37499356940732 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35068142480501063, dt = 0.003652931508385536
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (1.4%)
   patch tree reduce : 2.18 us    (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 494.61 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.21 us    (69.4%)
Info: cfl dt = 0.0036529315083855367                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6812e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.93404153611316 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35433435631339616, dt = 0.0036529315083855367
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (1.5%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 428.33 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (70.7%)
Info: cfl dt = 0.003652931508385538                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6719e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.74615246293843 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3579872878217817, dt = 0.003652931508385538
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 400.66 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.5%)
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.7223e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.75874631591651 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3616402193301672, dt = 0.0036529315083855397
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 419.88 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (72.3%)
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.6049e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.40195281438103 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36529315083855274, dt = 0.0036529315083855415
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (1.7%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 387.20 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.97 us    (64.8%)
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.6440e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.18688696282695 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36894608234693826, dt = 0.003652931508385544
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 400.93 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.3%)
Info: cfl dt = 0.003652931508385548                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7341e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.9950324036665 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3725990138553238, dt = 0.003652931508385548
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.5%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 423.85 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (69.5%)
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.6956e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.22185694155921 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3762519453637093, dt = 0.003652931508385552
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 401.68 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.7%)
Info: cfl dt = 0.003652931508385556                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7965e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.24701778678345 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37990487687209484, dt = 0.003652931508385556
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1924.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 419.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.1%)
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.7332e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.97649665492412 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835578083804804, dt = 0.003652931508385562
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 380.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (65.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.6495e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.29758644397587 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.387210739888866, dt = 0.003652931508385568
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 397.22 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.2%)
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.6703e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.71398683098143 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3908636713972516, dt = 0.003652931508385577
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 383.38 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (69.2%)
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.6195e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.69523577738399 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39451660290563717, dt = 0.0036529315083855866
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 446.13 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.7%)
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.6798e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.90494864242518 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39816953441402275, dt = 0.0036529315083855983
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.75 us    (1.8%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 407.11 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (76.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.7242e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.79574880936435 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40182246592240833, dt = 0.003652931508385613
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.51 us    (1.6%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.2%)
   LB compute        : 447.71 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (69.9%)
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.7470e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.25401888540571 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40547539743079397, dt = 0.00365293150838563
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 425.72 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.1%)
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.8666e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.65346903907331 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4091283289391796, dt = 0.0036529315083856503
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 440.05 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.1%)
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.3836e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.96205185271383 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41278126044756525, dt = 0.003652931508385675
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 419.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (73.2%)
Info: cfl dt = 0.003652931508385704                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6874e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.05752090006719 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41643419195595094, dt = 0.003652931508385704
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 419.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (69.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.7116e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.54313131494423 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42008712346433663, dt = 0.0036529315083857388
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (1.7%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 397.17 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (74.6%)
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.7660e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.63445507383581 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4237400549727224, dt = 0.00365293150838578
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 392.13 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (67.5%)
Info: cfl dt = 0.003652931508385828                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8758e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.83835970967175 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4273929864811082, dt = 0.003652931508385828
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1714.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 541.34 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (72.7%)
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    | 4.7740e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.79585654965845 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.431045917989494, dt = 0.003652931508385885
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 388.11 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.0%)
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.7391e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.09526242605723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43469884949787985, dt = 0.0036529315083859513
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1753.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 379.85 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.6%)
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.7764e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.84371527452781 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4383517810062658, dt = 0.0036529315083860293
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (1.6%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 430.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (73.6%)
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.7191e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.6948423322318 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44200471251465184, dt = 0.0036529315083861213
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1903.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 437.92 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (70.7%)
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.6636e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.57963569515097 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.445657644023038, dt = 0.003652931508386228
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.50 us    (1.7%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 421.57 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.56 us    (74.2%)
Info: cfl dt = 0.0036529315083863533                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6837e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.9833077103721 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44931057553142423, dt = 0.0036529315083863533
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 374.12 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (65.9%)
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    | 4.7761e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.83878672087764 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4529635070398106, dt = 0.003652931508386497
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 436.04 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (71.1%)
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.7958e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.23240614659167 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45661643854819706, dt = 0.0036529315083866642
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1973.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 411.45 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (71.8%)
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.7040e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.390989628654 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46026937005658375, dt = 0.003652931508386858
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 418.74 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (71.1%)
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    | 4.7551e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.4166929942243 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4639223015649706, dt = 0.003652931508387082
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.5%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 381.84 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (68.4%)
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.7076e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.46299494420484 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4675752330733577, dt = 0.003652931508387339
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.35 us    (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 437.81 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 5.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (72.6%)
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.7278e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.86837116717912 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47122816458174505, dt = 0.0036529315083876357
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 402.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.5%)
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.6546e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.40000105964049 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4748810960901327, dt = 0.003652931508387978
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1634.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 534.92 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (68.4%)
Info: cfl dt = 0.0036529315083883677                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5294e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.88840939285697 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47853402759852065, dt = 0.0036529315083883677
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 403.05 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (68.7%)
Info: cfl dt = 0.0036529315083888153                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7069e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.44991845614885 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.482186959106909, dt = 0.0036529315083888153
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.6%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 394.48 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 5.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.41 us    (71.4%)
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.8091e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.50064020673526 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4858398906152978, dt = 0.0036529315083893266
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.6%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 403.37 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (72.1%)
Info: cfl dt = 0.00365293150838991                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8687e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.69534152795781 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4894928221236871, dt = 0.00365293150838991
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.7%)
   patch tree reduce : 1894.00 ns (0.5%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 376.35 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (75.9%)
Info: cfl dt = 0.003652931508390573                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9804e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.93679343778092 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.493145753632077, dt = 0.003652931508390573
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1644.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 360.94 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (71.3%)
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.8508e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.33671696216514 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4967986851404676, dt = 0.0036529315083913285
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 509.16 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 5.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.24 us    (75.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    | 4.8950e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.22405776867788 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.500451616648859, dt = 0.0036529315083921854
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 375.74 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (69.3%)
Info: cfl dt = 0.0036529315083931578                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8411e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.14236282088062 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5041045481572511, dt = 0.0036529315083931578
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 490.88 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.2%)
Info: cfl dt = 0.003652931508394258                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7196e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.70505664841896 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5077574796656443, dt = 0.003652931508394258
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 396.54 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.1%)
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    | 4.8340e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.9998445797387 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5114104111740386, dt = 0.0036529315083955014
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 2.05 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 420.13 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.6%)
Info: cfl dt = 0.003652931508396904                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7856e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.02884025770692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150633426824341, dt = 0.003652931508396904
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 396.97 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.2%)
Info: cfl dt = 0.0036529315083984855                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8863e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.04960500443251 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.518716274190831, dt = 0.0036529315083984855
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 398.92 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.8%)
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    | 4.7927e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.17170050873088 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5223692056992295, dt = 0.0036529315084002658
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 424.52 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.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    | 4.7897e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.1102615168626 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5260221372076298, dt = 0.003652931508402267
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.1%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 470.33 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.6%)
Info: cfl dt = 0.003652931508404512                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8485e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.29042715246129 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5296750687160321, dt = 0.003652931508404512
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 385.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (54.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    | 4.8764e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.85077496566005 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5333280002244366, dt = 0.003652931508407029
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 389.19 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.7%)
Info: cfl dt = 0.003652931508409848                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7688e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.69065157734418 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5369809317328437, dt = 0.003652931508409848
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 413.69 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.8%)
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    | 4.7797e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.91037524383786 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5406338632412535, dt = 0.003652931508412999
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 367.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (63.4%)
Info: cfl dt = 0.003652931508416519                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8276e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.87210007551725 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5442867947496665, dt = 0.003652931508416519
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 383.50 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.0%)
Info: cfl dt = 0.0036529315084204445                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8013e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.3426515416349 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.547939726258083, dt = 0.0036529315084204445
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 377.96 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.6%)
Info: cfl dt = 0.003652931508424818                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8692e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.7066686045227 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5515926577665035, dt = 0.003652931508424818
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.20 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.8%)
Info: cfl dt = 0.0036529315084296845                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7634e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.58394053229267 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5552455892749283, dt = 0.0036529315084296845
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 387.17 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.1%)
Info: cfl dt = 0.0036529315084350947                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8675e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.67230279239203 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.558898520783358, dt = 0.0036529315084350947
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.6%)
Info: cfl dt = 0.0036529315084411003                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8270e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.85938186830778 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.562551452291793, dt = 0.0036529315084411003
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 436.89 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.3%)
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    | 5.1175e+05 | 65536 |      2 | 1.281e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.68875343245523 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5662043838002342, dt = 0.0036529315084477603
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.1%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 426.99 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.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    | 5.0846e+05 | 65536 |      2 | 1.289e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.02819821557893 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.569857315308682, dt = 0.0036529315084551403
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 426.94 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (63.3%)
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.8439e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.19810808584161 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5735102468171371, dt = 0.003652931508463306
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 401.85 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (64.1%)
Info: cfl dt = 0.003652931508472334                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7460e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.2337405132296 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5771631783256005, dt = 0.003652931508472334
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 398.54 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.7%)
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    | 4.8172e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.66205519005247 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5808161098340728, dt = 0.003652931508482302
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 395.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.5%)
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.8001e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.32040363022759 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5844690413425552, dt = 0.003652931508493299
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 432.21 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (65.9%)
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.6444e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.19447221277393 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5881219728510485, dt = 0.0036529315085054204
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.5%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 374.37 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.1%)
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.7158e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.627152011471 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5917749043595539, dt = 0.0036529315085187656
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 2.44 us    (0.6%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 377.40 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.0%)
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.9023e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.36931874923235 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5954278358680727, dt = 0.003652931508533444
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 400.82 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.1%)
Info: cfl dt = 0.0036529315085495747                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7896e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.10838188718411 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5990807673766061, dt = 0.0036529315085495747
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 388.17 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.7%)
Info: cfl dt = 0.003652931508567284                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8764e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.8504349531336 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6027336988851557, dt = 0.003652931508567284
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 374.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.3%)
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.8531e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.3832924305584 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.606386630393723, dt = 0.0036529315085867087
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 402.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.9%)
Info: cfl dt = 0.003652931508607996                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8681e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.68385817524776 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6100395619023097, dt = 0.003652931508607996
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 382.19 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.7%)
Info: cfl dt = 0.0036529315086313036                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9193e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.71093767983052 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6136924934109177, dt = 0.0036529315086313036
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 408.83 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.8%)
Info: cfl dt = 0.003652931508656801                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8650e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.62230092339827 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.617345424919549, dt = 0.003652931508656801
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.1%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 422.63 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.0%)
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.9068e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.4611435306929 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6209983564282058, dt = 0.0036529315086846694
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 388.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.8%)
Info: cfl dt = 0.0036529315087151038                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8874e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.07140394951459 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6246512879368904, dt = 0.0036529315087151038
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 403.28 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.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    | 5.0166e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.66335069294325 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6283042194456055, dt = 0.003652931508748312
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 407.79 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.2%)
Info: cfl dt = 0.0036529315087845196                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8940e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.20337527220549 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6319571509543539, dt = 0.0036529315087845196
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 398.41 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (64.6%)
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.7941e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.20005673607112 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6356100824631384, dt = 0.0036529315088239625
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 416.97 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.4%)
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.9171e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6673493091953 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6392630139719624, dt = 0.003652931508866897
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 421.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.4%)
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.9873e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.07650874832653 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6429159454808293, dt = 0.003652931508913595
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 378.83 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.9%)
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.7651e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.61686754299032 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6465688769897429, dt = 0.003652931508964348
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 381.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.7%)
Info: cfl dt = 0.0036529315090194654                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8307e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.93431792739099 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6502218084987073, dt = 0.0036529315090194654
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 379.13 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.8%)
Info: cfl dt = 0.0036529315090792778                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9501e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.32913982953522 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6538747400077267, dt = 0.0036529315090792778
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 395.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.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    | 4.8960e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.2434770640562 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.657527671516806, dt = 0.0036529315091441378
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1663.00 ns (0.3%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 493.29 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.7%)
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.9172e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6688380669553 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6611806030259502, dt = 0.0036529315092144196
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 415.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.9%)
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.8580e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.48133315236353 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6648335345351646, dt = 0.003652931509290522
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.96 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.6%)
Info: cfl dt = 0.00365293150937287                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9520e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.36701292620424 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.668486466044455, dt = 0.00365293150937287
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 429.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (66.9%)
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.9324e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.97517464444878 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6721393975538279, dt = 0.0036529315094619126
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 410.10 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.5%)
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.8741e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.80531022005435 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6757923290632898, dt = 0.0036529315095581295
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 376.76 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.1%)
Info: cfl dt = 0.0036529315096620273                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5566e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.43396601498199 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6794452605728479, dt = 0.0036529315096620273
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 385.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.4%)
Info: cfl dt = 0.0036529315097741455                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9565e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.45784696862667 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.68309819208251, dt = 0.0036529315097741455
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 385.69 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.9%)
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.6862e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.03467171422771 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6867511235922842, dt = 0.0036529315098950545
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 366.57 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.7%)
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    | 5.0509e+05 | 65536 |      2 | 1.298e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.35300283647908 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6904040551021793, dt = 0.0036529315100253595
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 382.26 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.6%)
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.9884e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.09718255637334 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6940569866122046, dt = 0.0036529315101657025
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 388.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (63.9%)
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.8984e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.29232705128933 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6977099181223703, dt = 0.0036529315103167597
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 415.75 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.1%)
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    | 4.8811e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.94398704521723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.701362849632687, dt = 0.0036529315104792495
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 398.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.7%)
Info: cfl dt = 0.003652931510653931                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9169e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6641143851544 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7050157811431663, dt = 0.003652931510653931
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 376.64 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (64.8%)
Info: cfl dt = 0.003652931510841604                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9499e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.32544200117275 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7086687126538203, dt = 0.003652931510841604
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 412.33 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.3%)
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.9203e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.73226454834163 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7123216441646618, dt = 0.003652931511043117
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.2%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 449.69 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (67.3%)
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.9196e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.7165151608728 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7159745756757049, dt = 0.0036529315112593624
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1914.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.3%)
   LB compute        : 421.07 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.8%)
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.8674e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.66994671027932 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7196275071869642, dt = 0.0036529315114912837
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 402.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.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.8486e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.29307175650699 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7232804386984555, dt = 0.0036529315117398756
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 400.80 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.1%)
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.9481e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.29021239157767 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7269333702101953, dt = 0.0036529315120061865
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 379.35 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (63.4%)
Info: cfl dt = 0.0036529315122913212                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8629e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.57938183252605 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7305863017222015, dt = 0.0036529315122913212
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 413.89 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.3%)
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.9125e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.5742213327702 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7342392332344928, dt = 0.003652931512596443
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 414.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.1%)
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.9163e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.65054395043869 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7378921647470893, dt = 0.0036529315129227766
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 397.34 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.5%)
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    | 5.0468e+05 | 65536 |      2 | 1.299e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.27079445883392 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7415450962600121, dt = 0.0036529315132716113
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1562.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 388.35 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.0%)
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.8923e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.16864249266521 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7451980277732837, dt = 0.003652931513644301
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.0%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 457.97 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.0%)
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.9346e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.01914147029467 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.748850959286928, dt = 0.0036529315140422713
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1864.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 414.08 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.9%)
Info: cfl dt = 0.00365293151446702                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8868e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.05873171485504 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7525038908009702, dt = 0.00365293151446702
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.3%)
   LB compute        : 386.14 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
Info: cfl dt = 0.0036529315149201195                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0166e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.66349802600507 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7561568223154372, dt = 0.0036529315149201195
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 437.17 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.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.9507e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.34064199177497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7598097538303573, dt = 0.0036529315154032196
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 389.93 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.4%)
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    | 5.0565e+05 | 65536 |      2 | 1.296e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.46540709893551 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7634626853457606, dt = 0.0036529315159180547
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 397.56 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.1%)
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    | 5.0012e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.35475214739635 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7671156168616786, dt = 0.0036529315164664415
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (0.3%)
   patch tree reduce : 1583.00 ns (0.1%)
   gen split merge   : 841.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1163.00 ns (0.1%)
   LB compute        : 1669.15 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.5%)
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.0116e+05 | 65536 |      2 | 1.634e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.4966835401989 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.770768548378145, dt = 0.003652931517050287
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.5%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 368.22 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (68.4%)
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.9500e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.32747825927085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7744214798951953, dt = 0.0036529315176715873
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 388.85 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.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.9124e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.57285897455826 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7780744114128668, dt = 0.0036529315183324376
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 421.46 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.2%)
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.8928e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.17876108289299 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7817273429311993, dt = 0.0036529315190350306
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 377.01 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.8%)
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.8633e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.58860229517033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7853802744502343, dt = 0.0036529315197816603
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 380.62 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.0%)
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    | 5.0350e+05 | 65536 |      2 | 1.302e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.03218565739675 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7890332059700159, dt = 0.003652931520574731
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 405.53 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.2%)
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.9222e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.76893551996874 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7926861374905907, dt = 0.0036529315214167547
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 411.20 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.8%)
Info: cfl dt = 0.003652931522310362                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0784e+05 | 65536 |      2 | 1.290e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.90300049396711 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7963390690120075, dt = 0.003652931522310362
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 373.35 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.5%)
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.8842e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.00787282602387 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7999920005343178, dt = 0.0036529315232582977
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 380.31 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (63.2%)
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    | 5.0079e+05 | 65536 |      2 | 1.309e-01 | 0.0% |   2.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.48988463811119 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8036449320575761, dt = 0.0036529315242634355
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 399.95 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.8%)
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.8138e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.59414837995453 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8072978635818395, dt = 0.0036529315253287743
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 436.55 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.6%)
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.7792e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.89992770896312 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8109507951071683, dt = 0.003652931526457448
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 402.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (66.8%)
Info: cfl dt = 0.003652931527652725                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8455e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.23054476319038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8146037266336257, dt = 0.003652931527652725
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.2%)
   LB compute        : 477.05 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (68.1%)
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.7915e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.14763182740316 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8182566581612783, dt = 0.003652931528918019
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 437.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.8%)
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.7197e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.70582515048136 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8219095896901963, dt = 0.0036529315302568904
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 389.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.3%)
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.7741e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.79802183972427 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8255625212204533, dt = 0.0036529315316730514
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 460.06 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.7%)
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.8894e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.11165114946118 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8292154527521263, dt = 0.0036529315331703736
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 1053.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 423.15 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.4%)
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.8744e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.8108780606318 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8328683842852966, dt = 0.00365293153475289
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 389.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.9%)
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.8385e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.08946901649519 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8365213158200495, dt = 0.0036529315364248038
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 401.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.2%)
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.8133e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.58387965777118 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8401742473564743, dt = 0.0036529315381904908
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 385.38 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.0%)
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.8367e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.05321668450193 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8438271788946647, dt = 0.0036529315400545097
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 382.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.1%)
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.8509e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.33983317096204 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8474801104347193, dt = 0.003652931542021604
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 426.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.8%)
Info: cfl dt = 0.0036529315440967094                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8471e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.26251242515326 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8511330419767409, dt = 0.0036529315440967094
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 373.03 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.3%)
Info: cfl dt = 0.00365293154628496                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8134e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.58709903295302 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8547859735208376, dt = 0.00365293154628496
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 398.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.6%)
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.8368e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.05600827807774 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8584389050671226, dt = 0.0036529315485916945
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 382.58 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.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.8876e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.07542994872541 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8620918366157143, dt = 0.0036529315510224637
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 1253.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 392.27 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (63.0%)
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.8689e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.70008004963036 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8657447681667367, dt = 0.0036529315535830374
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 388.54 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.9%)
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.8721e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.76462450488806 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8693976997203198, dt = 0.0036529315562794087
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.1%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 465.12 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.7%)
Info: cfl dt = 0.003652931559117803                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8426e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.17219967203931 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8730506312765992, dt = 0.003652931559117803
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 383.39 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.6%)
Info: cfl dt = 0.0036529315621046847                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8399e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.1177012986593 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.876703562835717, dt = 0.0036529315621046847
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 406.59 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.0%)
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.8711e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.74411053405599 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8803564943978217, dt = 0.003652931565246766
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 441.62 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.9%)
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.8629e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.58035567149479 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8840094259630685, dt = 0.0036529315685510095
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 390.22 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.2%)
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.8902e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.12691476004125 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8876623575316195, dt = 0.003652931572024645
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 392.80 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.8%)
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.8601e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.5242184101429 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913152891036441, dt = 0.0036529315756751654
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 380.33 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.0%)
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.8783e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.88971006988797 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8949682206793192, dt = 0.0036529315795103432
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 408.79 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.0%)
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.8649e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.62013965696876 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8986211522588295, dt = 0.003652931583538238
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 375.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.3%)
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.8700e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.7231392990765 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9022740838423677, dt = 0.003652931587767201
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 389.02 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (66.8%)
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.7410e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.13270787425932 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.905927015430135, dt = 0.0036529315922058858
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 376.51 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.6%)
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.8169e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.65636090072164 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9095799470223409, dt = 0.003652931596863258
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 398.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (66.0%)
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.9059e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.44251300163278 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9132328786192042, dt = 0.0036529316017486
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1031.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 404.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.2%)
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.9016e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.35605315810089 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9168858102209528, dt = 0.003652931606871526
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.09 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.3%)
Info: cfl dt = 0.0036529316122419857                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6409e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.12573225246997 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9205387418278244, dt = 0.0036529316122419857
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 366.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.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    | 5.0623e+05 | 65536 |      2 | 1.295e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.58122951299984 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9241916734400664, dt = 0.003652931617870276
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 356.70 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.6%)
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.8958e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.24012010527726 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9278446050579366, dt = 0.003652931623767052
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 405.02 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.9%)
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.8620e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.5622610047757 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9314975366817037, dt = 0.003652931629943332
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 401.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (63.3%)
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.8578e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.47661367902492 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9351504683116469, dt = 0.0036529316364105145
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (0.3%)
   patch tree reduce : 1543.00 ns (0.1%)
   gen split merge   : 1233.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.1%)
   LB compute        : 1660.35 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.7%)
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.7749e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.81427009783675 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9388033999480575, dt = 0.0036529316431803812
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 379.76 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.0%)
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.9220e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.76580179093814 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9424563315912379, dt = 0.003652931650265111
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 378.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.5%)
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.7864e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.0446817333785 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.946109263241503, dt = 0.0036529316576772906
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.1%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 475.20 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.2%)
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.4266e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.824857314202 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9497621948991803, dt = 0.0036529316654299233
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 370.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.9%)
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.7097e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.50635085063072 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9534151265646102, dt = 0.003652931673536443
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 389.32 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.3%)
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.9877e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.08371002530075 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9570680582381467, dt = 0.0036529316820107195
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 371.88 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (64.5%)
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.8614e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.54995948092721 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9607209899201574, dt = 0.003652931690867078
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 423.95 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.3%)
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.8784e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.88974448951211 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9643739216110245, dt = 0.003652931700120302
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 368.62 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.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.9034e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.39220386221899 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9680268533111448, dt = 0.003652931709785652
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 419.98 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.7%)
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.9082e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.48931291237129 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9716797850209304, dt = 0.0036529317198788717
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 379.05 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.3%)
Info: cfl dt = 0.003652931730416204                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9221e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.7683103684453 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9753327167408093, dt = 0.003652931730416204
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 425.54 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.6%)
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.8958e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.23994846540789 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9789856484712256, dt = 0.003652931741414401
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1582.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 429.54 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.1%)
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.9086e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.49675177464825 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9826385802126401, dt = 0.003652931752890739
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 440.14 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.3%)
Info: cfl dt = 0.0036529317648630283                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9585e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.49877211892459 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9862915119655308, dt = 0.0036529317648630283
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 426.98 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.7%)
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.9409e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.14539333833241 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9899444437303938, dt = 0.0036529317773496264
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 356.80 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.0%)
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.9180e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.68453580255087 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9935973755077434, dt = 0.003652931790369454
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 441.57 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.5%)
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.8989e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.30123598411511 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9972503072981128, dt = 0.003652931803942004
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 395.48 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.5%)
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.7939e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.19428511386064 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.000903239102055, dt = 0.0036529318180873608
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 394.35 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.5%)
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    | 4.8285e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.88960886418765 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0045561709201423, dt = 0.003652931832826206
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 390.00 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.9%)
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    | 4.9061e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.4475343685076 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0082091027529685, dt = 0.003652931848179839
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 439.37 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.4%)
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    | 5.0732e+05 | 65536 |      2 | 1.292e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.79978101388924 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0118620346011484, dt = 0.003652931864170192
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 417.21 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.3%)
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.8814e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.9511466583498 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0155149664653187, dt = 0.0036529318808198354
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 395.33 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.1%)
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.8857e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.03683789347723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0191678983461385, dt = 0.0036529318981520027
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 354.36 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.1%)
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.7914e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.14566136988721 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0228208302442905, dt = 0.0036529319161905994
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.5%)
   patch tree reduce : 1412.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 368.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (63.3%)
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.9256e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.83837415920866 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0264737621604811, dt = 0.00365293193496022
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 413.74 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.0%)
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.9798e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.92482145332907 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0301266940954414, dt = 0.0036529319544861636
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 387.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (63.8%)
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.9283e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.89181944356852 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0337796260499277, dt = 0.003652931974794448
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 373.48 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.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.8823e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.96857298802063 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0374325580247221, dt = 0.0036529319959118273
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 385.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.1%)
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.7569e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.4518759093409 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0410854900206339, dt = 0.0036529320178658045
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 392.85 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.5%)
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.6559e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.42672531142746 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0447384220384996, dt = 0.0036529320406846525
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.9%)
   patch tree reduce : 1493.00 ns (0.2%)
   gen split merge   : 842.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 599.73 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.4%)
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.7589e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.49370058266086 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0483913540791843, dt = 0.0036529320643974243
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 422.00 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.3%)
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.9063e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.45118150862393 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0520442861435817, dt = 0.003652932089033979
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 396.83 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.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    | 4.8510e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.34103520698959 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0556972182326156, dt = 0.003652932114624987
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 449.87 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (68.8%)
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.8391e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.10309055408753 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0593501503472407, dt = 0.0036529321412019553
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 403.32 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.3%)
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.8547e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.41442310725246 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0630030824884427, dt = 0.0036529321687972446
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 366.66 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.1%)
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.9575e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.47887457694296 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.06665601465724, dt = 0.003652932197444081
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 426.17 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.0%)
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.9714e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.75718618340731 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.070308946854684, dt = 0.0036529322271765794
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 409.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.2%)
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    | 4.8543e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.40811100182454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0739618790818606, dt = 0.003652932258029761
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 386.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.7%)
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.6331e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.96776022132445 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0776148113398902, dt = 0.0036529322900395677
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.5%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 375.81 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (69.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    | 4.9589e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.50678084029961 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0812677436299298, dt = 0.0036529323232428875
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 393.47 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.8%)
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    | 4.9249e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.82327027741897 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0849206759531727, dt = 0.003652932357677564
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.5%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 362.47 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.4%)
Info: cfl dt = 0.0036529323933824237                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9444e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.21591574768371 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0885736083108501, dt = 0.0036529323933824237
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 397.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.6%)
Info: cfl dt = 0.00365293243039729                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9546e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.42051569572361 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0922265407042326, dt = 0.00365293243039729
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (0.8%)
   patch tree reduce : 1203.00 ns (0.2%)
   gen split merge   : 1262.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.1%)
   LB compute        : 684.47 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.7%)
Info: cfl dt = 0.003652932468763007                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7849e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.01479500840465 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.09587947313463, dt = 0.003652932468763007
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1953.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 401.65 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.5%)
Info: cfl dt = 0.0036529325085214548                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9248e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.82192189772816 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.099532405603393, dt = 0.0036529325085214548
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 395.99 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.6%)
Info: cfl dt = 0.003652932549715571                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9223e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.7714518332293 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1031853381119145, dt = 0.003652932549715571
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 394.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.0%)
Info: cfl dt = 0.003652932592389374                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8872e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.06686466616046 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1068382706616302, dt = 0.003652932592389374
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 367.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.2%)
Info: cfl dt = 0.0036529326365879783                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8284e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.88705602017312 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1104912032540195, dt = 0.0036529326365879783
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 432.14 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.4%)
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    | 4.7938e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.19274215577947 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1141441358906075, dt = 0.0036529326823576203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 380.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.7%)
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.9090e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.50549424606942 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.117797068572965, dt = 0.003652932729745673
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 388.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.7%)
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.8553e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.42712058235402 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1214500013027107, dt = 0.003652932778800675
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 386.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (64.3%)
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.8280e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.87944298586444 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1251029340815113, dt = 0.0036529328295723464
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 388.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.2%)
Info: cfl dt = 0.0036529328821116092                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8826e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.97475909633144 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1287558669110835, dt = 0.0036529328821116092
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 410.48 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (69.0%)
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.9333e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.99263333072922 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.132408799793195, dt = 0.0036529329364706166
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1774.00 ns (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 372.31 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.3%)
Info: cfl dt = 0.003652932992702766                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8088e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.49460463462184 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1360617327296656, dt = 0.003652932992702766
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 380.71 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.0%)
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.8549e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.41920434315885 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1397146657223685, dt = 0.0036529330508627295
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.1%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 514.45 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.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.9292e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.90948677511763 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1433675987732312, dt = 0.003652933111006472
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 369.23 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.6%)
Info: cfl dt = 0.0036529331731912735                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8775e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.87341791090219 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1470205318842377, dt = 0.0036529331731912735
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 386.85 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.4%)
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.8377e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0739052325908 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.150673465057429, dt = 0.003652933237475756
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 398.93 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.2%)
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.8894e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.11183091642242 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1543263982949048, dt = 0.0036529333039199024
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 371.16 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (62.6%)
Info: cfl dt = 0.0036529333725850857                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8683e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.68788412722108 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1579793315988247, dt = 0.0036529333725850857
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 410.75 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.9%)
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.8860e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0434831636599 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1616322649714097, dt = 0.0036529334435340876
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 417.66 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.0%)
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    | 4.8448e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.21610156139715 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1652851984149437, dt = 0.003652933516831126
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 391.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.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    | 4.8473e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.26722956961066 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1689381319317749, dt = 0.0036529335925418785
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 409.47 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.1%)
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.9470e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.2675711875382 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1725910655243168, dt = 0.003652933670733503
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 393.17 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 21.98 us   (5.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.7%)
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    | 5.0184e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.70014176321327 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1762439991950504, dt = 0.0036529337514746743
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 416.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.9%)
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.8192e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.70274205358797 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.179896932946525, dt = 0.0036529338348355936
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 393.84 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.3%)
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.9450e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.2262599310916 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1835498667813606, dt = 0.0036529339208880257
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 400.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.1%)
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.9037e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.39745173612556 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1872028007022486, dt = 0.003652934009705321
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 381.44 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 20.34 us   (4.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.4%)
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.8852e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0282051307524 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.190855734711954, dt = 0.0036529341013624406
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 371.66 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.9%)
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.8888e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.10038461690654 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1945086688133164, dt = 0.0036529341959359828
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 422.69 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (65.6%)
Info: cfl dt = 0.00365293429350421                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6566e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.43964940223061 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1981616030092523, dt = 0.00365293429350421
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1163.00 ns (0.3%)
   LB compute        : 369.86 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (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.9994e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.31875629704103 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2018145373027564, dt = 0.0036529343941470753
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 423.60 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.4%)
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.8949e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.22261231929183 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2054674716969036, dt = 0.0036529344979462502
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 358.26 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.8%)
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.9662e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.65227314062179 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.20912040619485, dt = 0.003652934604985149
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 368.27 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (63.9%)
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    | 5.0009e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.34930496245182 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2127733407998351, dt = 0.00365293471534896
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 395.58 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.5%)
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.9381e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.0889578092315 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.216426275515184, dt = 0.0036529348291246704
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.1%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 441.99 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.4%)
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    | 4.9446e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.21839624672727 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2200792103443088, dt = 0.0036529349464010977
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.1%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 446.73 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.7%)
Info: cfl dt = 0.0036529350672689104                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5692e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.68705993399101 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.22373214529071, dt = 0.0036529350672689104
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 377.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (64.0%)
Info: cfl dt = 0.003652935191820665                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7896e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.10907114851406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2273850803579789, dt = 0.003652935191820665
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.1%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 453.27 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.1%)
Info: cfl dt = 0.003652935320150833                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8513e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.34629152227541 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2310380155497995, dt = 0.003652935320150833
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 370.22 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.8%)
Info: cfl dt = 0.0036529354523558238                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9251e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.82732014722365 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2346909508699504, dt = 0.0036529354523558238
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 1223.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 376.17 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.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.9024e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.37321681540703 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2383438863223062, dt = 0.003652935588534021
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1994.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 389.90 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (68.2%)
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.8156e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.62982813296006 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2419968219108402, dt = 0.0036529357287858073
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 430.72 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (67.3%)
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.7835e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.98634731442547 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.245649757639626, dt = 0.0036529358732135964
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 386.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.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.7392e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.09664686791197 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2493026935128395, dt = 0.003652936021921864
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 404.25 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.5%)
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.8553e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.42794174051626 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2529556295347615, dt = 0.0036529361750171725
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 377.27 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.1%)
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.8947e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.21753824674792 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2566085657097787, dt = 0.0036529363326082104
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 371.26 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.8%)
Info: cfl dt = 0.0036529364948058142                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8197e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.71276402966105 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2602615020423868, dt = 0.0036529364948058142
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 406.29 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.1%)
Info: cfl dt = 0.003652936661723004                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9047e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.41932249810564 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2639144385371928, dt = 0.003652936661723004
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 385.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.2%)
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.8894e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.1125318968643 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2675673751989158, dt = 0.0036529368334750137
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 376.06 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.8%)
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.8601e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.52340493555845 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2712203120323908, dt = 0.003652937010179323
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 450.92 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.5%)
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.8685e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.69148108319663 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.27487324904257, dt = 0.0036529371919556877
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 417.70 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.1%)
Info: cfl dt = 0.003652937378926174                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8389e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.09758014623864 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2785261862345256, dt = 0.003652937378926174
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 449.52 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.5%)
Info: cfl dt = 0.003652937571215187                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7939e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.19459446525335 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2821791236134519, dt = 0.003652937571215187
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 426.33 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.0%)
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    | 4.7568e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.44994661804874 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.285832061184667, dt = 0.0036529377689495063
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 17.01 us   (4.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 375.13 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.7%)
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.8682e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.68546013395292 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2894849989536166, dt = 0.0036529379722583166
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (1.5%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 427.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (69.0%)
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.8171e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.66182763836454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2931379369258749, dt = 0.003652938181273243
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 377.92 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.3%)
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.9005e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.33400977120225 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2967908751071482, dt = 0.003652938396128383
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1021.00 ns (0.3%)
   LB compute        : 377.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.1%)
Info: cfl dt = 0.0036529386169603362                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6844e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.99841657917759 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3004438135032765, dt = 0.0036529386169603362
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 400.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.2%)
Info: cfl dt = 0.0036529388439082446                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8189e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.69704369973637 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.304096752120237, dt = 0.0036529388439082446
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.6%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 384.57 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.9%)
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    | 4.8727e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.77662878379468 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.307749690964145, dt = 0.003652939077113822
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 1273.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 432.90 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.3%)
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.8673e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.66855894629383 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.311402630041259, dt = 0.003652939316721389
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (0.6%)
   patch tree reduce : 1573.00 ns (0.2%)
   gen split merge   : 942.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.1%)
   LB compute        : 952.86 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.8%)
Info: cfl dt = 0.003652939562877907                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7677e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.66983041557013 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3150555693579802, dt = 0.003652939562877907
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 379.78 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.8%)
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    | 4.8221e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.76080101710203 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3187085089208581, dt = 0.003652939815733013
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.56 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.4%)
Info: cfl dt = 0.0036529400754390564                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8365e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.05042478480593 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3223614487365911, dt = 0.0036529400754390564
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 399.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.1%)
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    | 4.7710e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.73564391379715 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3260143888120302, dt = 0.003652940342151131
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 421.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.5%)
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.8039e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.39551311055929 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3296673291541812, dt = 0.0036529406160271103
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 418.81 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.6%)
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.8182e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.6833716152833 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3333202697702082, dt = 0.0036529408972276857
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.5%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 371.45 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.2%)
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.8025e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.36859152673625 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.336973210667436, dt = 0.0036529411859164
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 376.17 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.5%)
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.7363e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.03895894933558 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3406261518533522, dt = 0.003652941482259686
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1143.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 379.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.2%)
Info: cfl dt = 0.0036529417864268987                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8342e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0034343882969 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.344279093335612, dt = 0.0036529417864268987
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 431.90 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.4%)
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.8698e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.71807138969811 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3479320351220387, dt = 0.0036529420985903518
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (0.3%)
   patch tree reduce : 1784.00 ns (0.1%)
   gen split merge   : 872.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.1%)
   LB compute        : 1663.08 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.9%)
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.8444e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.20969609812929 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3515849772206292, dt = 0.0036529424189253585
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 429.11 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.9%)
Info: cfl dt = 0.003652942747610269                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8605e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.5323876045059 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3552379196395545, dt = 0.003652942747610269
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 372.04 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.8%)
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    | 4.8847e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.01775307852941 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3588908623871647, dt = 0.003652943084826499
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 405.76 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.6%)
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    | 4.9095e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.51429859754047 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3625438054719912, dt = 0.0036529434307585765
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 1143.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 403.90 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.8%)
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    | 4.8570e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.46185740618292 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3661967489027498, dt = 0.003652943785594175
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 378.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.3%)
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.8998e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.32084325199038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.369849692688344, dt = 0.0036529441495241496
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 402.86 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.9%)
Info: cfl dt = 0.0036529445227425797                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5773e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.84825949354982 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.373502636837868, dt = 0.0036529445227425797
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 369.65 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.4%)
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    | 5.0677e+05 | 65536 |      2 | 1.293e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.68987308100472 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3771555813606107, dt = 0.003652944905446804
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 393.78 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.3%)
Info: cfl dt = 0.0036529452978374577                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9004e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.33266653083543 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3808085262660574, dt = 0.0036529452978374577
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 2.15 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 383.07 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.7%)
Info: cfl dt = 0.0036529457001185147                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9247e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.8206255790264 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.384461471563895, dt = 0.0036529457001185147
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 400.56 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.7%)
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    | 4.9596e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.52019109742872 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3881144172640134, dt = 0.0036529461124973246
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1133.00 ns (0.3%)
   LB compute        : 391.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.6%)
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.9707e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.74224609544066 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3917673633765106, dt = 0.0036529465351846525
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 388.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (65.9%)
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.9443e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.21430672309323 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3954203099116953, dt = 0.003652946968394715
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 386.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.7%)
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.9182e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.69040140353444 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.39907325688009, dt = 0.0036529474123452245
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 412.23 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (62.9%)
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    | 4.8687e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.69682071451741 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4027262042924353, dt = 0.003652947867257426
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 397.49 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.3%)
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.6903e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.11709399188767 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4063791521596927, dt = 0.003652948333356138
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 437.27 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (67.8%)
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    | 4.9314e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.95445466347405 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4100321004930487, dt = 0.0036529488108697906
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 405.78 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
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.5777e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.8574798469672 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4136850493039186, dt = 0.003652949300030469
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 398.48 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
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.8452e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.22469704014593 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4173379986039492, dt = 0.003652949801073952
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.5%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 375.89 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.4%)
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.7615e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.5463148858161 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4209909484050232, dt = 0.0036529503142397543
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 360.64 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.8%)
Info: cfl dt = 0.003652950839771162                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8895e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.11363204429313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.424643898719263, dt = 0.003652950839771162
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 429.73 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.8%)
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.8847e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.01676185488941 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.428296849559034, dt = 0.0036529513779152826
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 439.66 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.7%)
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.8926e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.17542045205458 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4319498009369493, dt = 0.0036529519289230793
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 383.50 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.9%)
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.8569e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.45901585481127 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4356027528658724, dt = 0.0036529524930494156
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 376.92 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.5%)
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.8092e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.50240762341872 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4392557053589217, dt = 0.0036529530705530933
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1362.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 374.15 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.0%)
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    | 5.0212e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.75599111954895 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4429086584294748, dt = 0.003652953661696903
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 388.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.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.8561e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.44399864498492 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4465616120911717, dt = 0.003652954266747654
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 409.50 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (66.9%)
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.9361e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.0500538956263 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4502145663579193, dt = 0.003652954885976227
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 371.24 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (62.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.9333e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.99198443564961 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4538675212438956, dt = 0.00365295551965761
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 437.06 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.5%)
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.9087e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.49856373062974 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4575204767635532, dt = 0.0036529561680709454
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 436.73 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.6%)
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.7368e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.04928708171828 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4611734329316242, dt = 0.00365295683149957
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 380.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.7%)
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.9110e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.54533527457717 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4648263897631237, dt = 0.003652957510231057
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.17 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.9%)
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.9060e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.44472058804229 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4684793472733548, dt = 0.003652958204557264
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 387.41 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.5%)
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.9149e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.62466512697407 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.472132305477912, dt = 0.0036529589147743713
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 378.38 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (65.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.9310e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.94705906518263 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4757852643926865, dt = 0.0036529596411829265
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1934.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 425.09 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.5%)
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.9160e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.64574616018447 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4794382240338695, dt = 0.0036529603840878906
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.3%)
   LB compute        : 389.06 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.5%)
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.9527e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.382225493424 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4830911844179573, dt = 0.003652961143798679
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (0.9%)
   patch tree reduce : 1403.00 ns (0.2%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 604.64 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (65.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.9502e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.33239156104425 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.486744145561756, dt = 0.003652961920629208
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 395.12 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.6%)
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.5032e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.362957017698 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4903971074823852, dt = 0.003652962714897937
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 471.74 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (68.4%)
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.8923e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.17010831252144 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4940500701972832, dt = 0.003652963526927915
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1763.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 370.62 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.4%)
Info: cfl dt = 0.0036529643570468195                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8640e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.6018043744158 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4977030337242112, dt = 0.0036529643570468195
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 383.63 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.1%)
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.8541e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.40330630944574 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.501355998081258, dt = 0.0036529652055870116
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 383.89 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.1%)
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.7973e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.26351187707621 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.505008963286845, dt = 0.0036529660728855692
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 408.89 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (64.7%)
Info: cfl dt = 0.0036529669592843396                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8380e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0814284014645 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5086619293597308, dt = 0.0036529669592843396
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 376.44 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.6%)
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.9060e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.44502092461171 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5123148963190152, dt = 0.0036529678651299846
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 381.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.5%)
Info: cfl dt = 0.0036529687907740204                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9071e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.4681586379804 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5159678641841452, dt = 0.0036529687907740204
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 389.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.6%)
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.9008e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.3412717519722 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5196208329749192, dt = 0.003652969736572867
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 397.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.6%)
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.9185e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.69702050975661 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.523273802711492, dt = 0.0036529707028878948
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (0.7%)
   patch tree reduce : 1723.00 ns (0.2%)
   gen split merge   : 952.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.1%)
   LB compute        : 753.64 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (67.9%)
Info: cfl dt = 0.003652971690085467                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8335e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.99049184493852 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5269267734143799, dt = 0.003652971690085467
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 404.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.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.8674e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.67073300190683 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5305797451044654, dt = 0.0036529726985369882
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 409.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.8%)
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.8384e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.08986276842573 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5342327178030024, dt = 0.00365297372861895
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 378.43 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (68.2%)
Info: cfl dt = 0.0036529747807129737                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8863e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.051319447791 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5378856915316215, dt = 0.0036529747807129737
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.92 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.2%)
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.8691e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.70511538910326 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5415386663123345, dt = 0.0036529758552058633
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.1%)
   patch tree reduce : 1594.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 477.27 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.5%)
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.7059e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.43127585232752 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5451916421675405, dt = 0.003652976952489647
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 398.22 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (63.4%)
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.7038e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.38858604458181 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.54884461912003, dt = 0.0036529780729616227
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1123.00 ns (0.3%)
   LB compute        : 392.63 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.9%)
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.9067e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.45942259823406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5524975971929917, dt = 0.0036529792170244095
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 390.99 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.0%)
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.8265e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.85141825658496 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.556150576410016, dt = 0.0036529803850859923
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 369.87 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.0%)
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.8848e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0212959788824 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.559803556795102, dt = 0.0036529815775597687
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1233.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 436.07 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.8%)
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.9798e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.92642997811032 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5634565383726617, dt = 0.003652982794864593
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 419.50 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.7%)
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.9280e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.88837627197273 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5671095211675263, dt = 0.0036529840374248277
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 409.20 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.3%)
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.7840e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.99841440545896 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5707625052049512, dt = 0.003652985305670394
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 400.99 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.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    | 4.7296e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.90545294823869 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5744154905106216, dt = 0.003652986600036807
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 407.14 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.9%)
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.7598e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.51305784695113 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5780684771106583, dt = 0.003652987920965237
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1273.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 414.22 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.1%)
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.7486e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.2872100363241 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5817214650316236, dt = 0.003652989268902551
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 389.10 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.1%)
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.4948e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.19551395304298 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5853744543005261, dt = 0.0036529906443013567
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 387.17 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.4%)
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    | 5.0121e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.57618243536567 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5890274449448274, dt = 0.003652992047620056
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 395.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.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.9102e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.52974500283601 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5926804369924474, dt = 0.003652993479322896
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 377.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.7%)
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.9266e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.85985033263717 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5963334304717702, dt = 0.0036529949398800055
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.5%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 400.23 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.9%)
Info: cfl dt = 0.0036529964297674555                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9672e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.67351386714586 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5999864254116503, dt = 0.0036529964297674555
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 365.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.3%)
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    | 5.1464e+05 | 65536 |      2 | 1.273e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.27128169181655 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6036394218414176, dt = 0.0036529979494673015
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 399.42 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.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    | 5.1689e+05 | 65536 |      2 | 1.268e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.72257130693994 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6072924197908849, dt = 0.003652999499467632
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.5%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 357.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.5%)
Info: cfl dt = 0.003653001080262617                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8296e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.91259843305946 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6109454192903525, dt = 0.003653001080262617
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 378.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.4%)
Info: cfl dt = 0.003653002692352561                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9356e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.0400002396804 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6145984203706152, dt = 0.003653002692352561
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 376.42 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.7%)
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    | 4.8115e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.55000634011255 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6182514230629677, dt = 0.0036530043362439425
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 401.22 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.4%)
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.2804e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.89294004198926 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6219044273992116, dt = 0.0036530060124494714
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 366.71 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.5%)
Info: cfl dt = 0.003653007721488137                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8160e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.64082805343448 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6255574334116611, dt = 0.003653007721488137
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 363.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.0%)
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    | 4.8159e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.6377556755183 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6292104411331494, dt = 0.003653009463885251
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 422.36 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (63.6%)
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.6253e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.81479284746463 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6328634505970347, dt = 0.003653011240172504
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 993.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 399.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.4%)
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.7890e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.09797210739158 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6365164618372072, dt = 0.003653013050888007
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 374.02 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.1%)
Info: cfl dt = 0.003653014896576348                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6569e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.44825982796057 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401694748880953, dt = 0.003653014896576348
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 382.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.5%)
Info: cfl dt = 0.003653016777788636                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9100e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.5262562185032 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6438224897846716, dt = 0.003653016777788636
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.5%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 377.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.9%)
Info: cfl dt = 0.0036530186950825515                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7344e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.00253683550328 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6474755065624602, dt = 0.0036530186950825515
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.1%)
   patch tree reduce : 1562.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 85.78 us   (16.9%)
   LB compute        : 404.23 us  (79.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.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.7851e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.02021369139388 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6511285252575427, dt = 0.003653020649022398
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.0%)
   patch tree reduce : 1673.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 518.38 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.1%)
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.7263e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.84000971011048 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6547815459065651, dt = 0.00365302264017915
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 353.90 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.4%)
Info: cfl dt = 0.003653024669130501                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0424e+05 | 65536 |      2 | 1.300e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.18328345263816 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6584345685467443, dt = 0.003653024669130501
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 360.53 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (63.1%)
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    | 5.1964e+05 | 65536 |      2 | 1.261e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.2740338822812 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6620875932158747, dt = 0.003653026736460917
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 385.19 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.0%)
Info: cfl dt = 0.0036530288427616808                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0273e+05 | 65536 |      2 | 2.165e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.747878904900524 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6657406199523357, dt = 0.0036530288427616808
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 403.81 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.0%)
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.6248e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.80540398536495 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6693936487950973, dt = 0.0036530309886309456
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 395.40 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.0%)
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.6586e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.48201397133958 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6730466797837282, dt = 0.0036530331746737837
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 410.44 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.7%)
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.9488e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.30645467083473 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.676699712958402, dt = 0.0036530354015022375
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 400.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.9%)
Info: cfl dt = 0.0036530376697353657                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8622e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.56787016004886 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6803527483599043, dt = 0.0036530376697353657
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 395.60 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 21.60 us   (5.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (63.9%)
Info: cfl dt = 0.0036530399799992973                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8668e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.65983732890577 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6840057860296398, dt = 0.0036530399799992973
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1302.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 381.22 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.7%)
Info: cfl dt = 0.0036530423329272795                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8270e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.86203403138057 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.687658826009639, dt = 0.0036530423329272795
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 431.10 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.4%)
Info: cfl dt = 0.003653044729159728                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8364e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.05135499073073 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6913118683425663, dt = 0.003653044729159728
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.8%)
   patch tree reduce : 1653.00 ns (0.2%)
   gen split merge   : 851.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.1%)
   LB compute        : 745.74 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.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    | 4.9324e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.97774245042808 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6949649130717261, dt = 0.0036530471693442756
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 403.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.9%)
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    | 4.9398e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.12671589646949 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6986179602410705, dt = 0.003653049654135824
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1943.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1243.00 ns (0.3%)
   LB compute        : 418.85 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.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    | 4.8856e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.03856543328867 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7022710098952063, dt = 0.0036530521841965946
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 394.31 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.1%)
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    | 5.0302e+05 | 65536 |      2 | 1.303e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.93919330273813 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.705924062079403, dt = 0.003653054760196177
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 437.25 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.9%)
Info: cfl dt = 0.0036530573828115792                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8953e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.23303109512888 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7095771168395992, dt = 0.0036530573828115792
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 404.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.5%)
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.9181e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.69144024540726 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7132301742224108, dt = 0.0036530600527272757
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.3%)
   LB compute        : 382.32 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.1%)
Info: cfl dt = 0.003653062770635263                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6017e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.34212943509775 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7168832342751381, dt = 0.003653062770635263
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 379.95 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (64.6%)
Info: cfl dt = 0.003653065537235105                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9125e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.5786840390605 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7205362970457734, dt = 0.003653065537235105
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 387.91 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (62.8%)
Info: cfl dt = 0.0036530683532339857                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9041e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.40986476501386 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7241893625830085, dt = 0.0036530683532339857
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 426.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.3%)
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.9092e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.51296117434612 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7278424309362426, dt = 0.0036530712193467573
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1574.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 382.00 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.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    | 4.7008e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.33041415736236 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7314955021555893, dt = 0.0036530741362959924
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 382.17 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.4%)
Info: cfl dt = 0.0036530771048120347                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9142e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.61338328698723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7351485762918852, dt = 0.0036530771048120347
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 402.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.3%)
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.9149e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.62762155822641 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7388016533966972, dt = 0.003653080125633043
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 399.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.5%)
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.8937e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.2025400981285 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7424547335223304, dt = 0.003653083199505051
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 380.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.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.8702e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.730865058367 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7461078167218353, dt = 0.0036530863271820122
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 396.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.4%)
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.6641e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.59449056309698 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7497609030490173, dt = 0.0036530895094258483
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 381.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.1%)
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.9369e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.06865731572786 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.753413992558443, dt = 0.003653092747006503
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 381.63 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.4%)
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.7884e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.08942166355064 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7570670853054495, dt = 0.0036530960407019897
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 396.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.6%)
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.6657e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.62673580967429 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7607201813461515, dt = 0.003653099391298444
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 373.12 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.1%)
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.9717e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.76835000737537 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.76437328073745, dt = 0.0036531027995901732
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 384.55 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.2%)
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.9356e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.04333388823761 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.76802638353704, dt = 0.0036531062663797036
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1453.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 390.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.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.7996e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.31442073712554 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7716794898034196, dt = 0.003653109792477836
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 449.81 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.3%)
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.9114e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.55768764570192 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7753325995958975, dt = 0.0036531133787036873
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1382.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 375.37 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (63.5%)
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.8820e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.96686377725638 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7789857129746012, dt = 0.0036531170258847522
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 402.80 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (64.5%)
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.7138e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.59168019491058 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7826388300004858, dt = 0.003653120734856941
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 390.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.8%)
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.9613e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.55892078484572 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7862919507353427, dt = 0.0036531245064646387
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 389.53 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (63.7%)
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.8527e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.37965356535346 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7899450752418073, dt = 0.0036531283415607504
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1934.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 420.46 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.6%)
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    | 5.0620e+05 | 65536 |      2 | 1.295e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.58014911182708 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7935982035833682, dt = 0.0036531322410067535
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 412.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.2%)
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.9169e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.66829977211793 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.797251335824375, dt = 0.003653136205672745
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1423.00 ns (0.3%)
   LB compute        : 397.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.8%)
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.9559e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.45108719146508 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8009044720300476, dt = 0.003653140236437493
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 394.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.8%)
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.6626e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.56583726712537 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.804557612266485, dt = 0.003653144334188487
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1462.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 395.83 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.0%)
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.9822e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.97851402179256 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8082107566006735, dt = 0.003653148499821986
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 442.00 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.9%)
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.9479e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.29098257013948 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8118639051004954, dt = 0.0036531527342430693
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 387.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (61.9%)
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.9465e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.26307668900128 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8155170578347386, dt = 0.0036531570383656845
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 375.10 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.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.9328e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.98863863223966 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8191702148731044, dt = 0.0036531614131127014
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 383.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.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.9973e+05 | 65536 |      2 | 1.311e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.28300160268748 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8228233762862172, dt = 0.003653165859415954
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 390.93 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.7%)
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.9364e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.06008215853916 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.826476542145633, dt = 0.0036531703782162993
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 372.03 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.4%)
Info: cfl dt = 0.0036531749704636555                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9603e+05 | 65536 |      2 | 1.321e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.54132322794484 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8301297125238494, dt = 0.0036531749704636555
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 355.93 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.0%)
Info: cfl dt = 0.003653179637117063                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9534e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.40197200739048 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.833782887494313, dt = 0.003653179637117063
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1824.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 373.65 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (62.7%)
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    | 5.0397e+05 | 65536 |      2 | 1.300e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.13411543588025 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.83743606713143, dt = 0.0036531843791447246
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 405.96 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (63.9%)
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    | 5.0209e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.75772148942232 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8410892515105748, dt = 0.00365318919752406
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 386.90 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.1%)
Info: cfl dt = 0.0036531940932417522                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8946e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.22184933472322 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8447424407080988, dt = 0.0036531940932417522
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 404.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.8%)
Info: cfl dt = 0.0036531990672937953                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8981e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.2924763424662 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8483956348013406, dt = 0.0036531990672937953
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 445.02 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.6%)
Info: cfl dt = 0.003653204120685548                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7803e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.929783136582 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8520488338686345, dt = 0.003653204120685548
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 392.43 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (66.7%)
Info: cfl dt = 0.003653209254431778                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9796e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.92822901409012 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.85570203798932, dt = 0.003653209254431778
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.3%)
   LB compute        : 391.02 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.9%)
Info: cfl dt = 0.003653214469556713                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8932e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.195835263234 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8593552472437518, dt = 0.003653214469556713
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 372.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.1%)
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.9070e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.47294277945228 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8630084617133085, dt = 0.0036532197670940876
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 376.68 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.3%)
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    | 5.0362e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.06503093355964 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8666616814804025, dt = 0.003653225148087194
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 412.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (62.4%)
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.9168e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.67017840305043 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8703149066284896, dt = 0.0036532306135889266
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 377.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.1%)
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.6825e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.96708902307456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8739681372420787, dt = 0.0036532361646618365
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 437.61 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.4%)
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.8866e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.06393069510193 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8776213734067404, dt = 0.0036532418023781754
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.5%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 361.94 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.0%)
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.9480e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.29501332555877 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8812746152091187, dt = 0.0036532475278199415
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 386.20 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.6%)
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.9580e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.49740902080333 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8849278627369386, dt = 0.003653253342078934
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 368.95 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.6%)
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.9518e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.37245458468442 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8885811160790176, dt = 0.003653259246256794
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1013.00 ns (0.2%)
   LB compute        : 421.40 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.2%)
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.8630e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.5911279089191 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8922343753252744, dt = 0.0036532652414650586
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 383.92 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.7%)
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.9507e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.35094694030403 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8958876405667395, dt = 0.0036532713288252036
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 415.43 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.9%)
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.9454e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.2436863133241 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8995409118955648, dt = 0.003653277509468693
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (0.8%)
   patch tree reduce : 1433.00 ns (0.2%)
   gen split merge   : 941.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 709.73 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (71.2%)
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.9350e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.03652550347945 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9031941894050335, dt = 0.003653283784537028
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 385.69 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.1%)
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.8956e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.24477725662693 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9068474731895706, dt = 0.003653290155181791
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 422.14 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.1%)
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.9241e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.81693615365788 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9105007633447524, dt = 0.0036532966225646954
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 400.93 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.4%)
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.9222e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.77931544279829 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.914154059967317, dt = 0.0036533031878576306
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.5%)
   patch tree reduce : 1783.00 ns (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 356.39 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.4%)
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.9725e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.78991875929962 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9178073631551746, dt = 0.00365330985224271
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 373.28 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.3%)
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    | 4.9292e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.92103227403476 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9214606730074173, dt = 0.003653316616912318
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.3%)
   patch tree reduce : 1594.00 ns (0.3%)
   gen split merge   : 1113.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 424.50 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.0%)
Info: cfl dt = 0.0036533234830691537                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9113e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.56125627630635 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9251139896243297, dt = 0.0036533234830691537
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.5%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 356.36 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.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.9667e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.67251774708335 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9287673131073988, dt = 0.0036533304519262857
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 388.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (64.6%)
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.9181e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6971480421589 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9324206435593252, dt = 0.003653337524707185
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 387.76 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.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    | 4.8853e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.03941440052928 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9360739810840324, dt = 0.0036533447026457825
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 415.62 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.9%)
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.6501e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.32054216884266 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9397273257866783, dt = 0.003653351986986513
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.1%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 436.33 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.7%)
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.8943e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.22148661233444 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9433806777736649, dt = 0.0036533593789843557
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (0.8%)
   patch tree reduce : 1352.00 ns (0.2%)
   gen split merge   : 942.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.1%)
   LB compute        : 694.40 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.8%)
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.5799e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.91077115727562 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.947034037152649, dt = 0.0036533668799048845
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 392.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.7%)
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.7277e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.8786437590151 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.950687404032554, dt = 0.003653374491024311
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 393.88 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.5%)
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.6226e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.76868009809358 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9543407785235782, dt = 0.0036533822136295352
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 425.72 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.1%)
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.6971e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.26512789791474 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9579941607372078, dt = 0.003653390049018181
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 379.80 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.6%)
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.5219e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.74815264596896 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9616475507862259, dt = 0.003653397998498651
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 393.09 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.7%)
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.8129e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.58856145968659 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9653009487847246, dt = 0.003653406063390166
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 412.53 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.0%)
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.9213e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.76361357036846 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9689543548481148, dt = 0.0036534142450228113
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.2%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 442.40 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.8%)
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.9396e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.13115100054914 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9726077690931376, dt = 0.0036534225447375805
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (0.5%)
   patch tree reduce : 1563.00 ns (0.1%)
   gen split merge   : 941.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 1104.92 us (98.2%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.1%)
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.8907e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.15137724322072 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9762611916378752, dt = 0.0036534309638864212
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 375.63 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
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.8837e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.00997721158362 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9799146226017617, dt = 0.0036534395038322755
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1363.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 428.03 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.9%)
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.9859e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.0617205375787 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.983568062105594, dt = 0.00365344816594913
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 368.05 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.2%)
Info: cfl dt = 0.0036534569516220522                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8521e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.3762839579167 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9872215102715431, dt = 0.0036534569516220522
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 437.24 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.3%)
Info: cfl dt = 0.0036534658622472426                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0137e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.61970464999614 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9908749672231651, dt = 0.0036534658622472426
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 408.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.8%)
Info: cfl dt = 0.00365347489923207                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9505e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.35204004323676 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9945284330854125, dt = 0.00365347489923207
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.9%)
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.9583e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.50942541567636 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9981819079846446, dt = 0.0018180920153554325
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 408.22 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.8%)
Info: cfl dt = 0.003653488635893796                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9332e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.26851316292066 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1013.0897698260001 (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.27 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.81 us    (58.2%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (0.4%)
   patch tree reduce : 942.00 ns  (0.2%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 782.00 ns  (0.2%)
   LB compute        : 448.98 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (62.1%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1383.00 ns (0.3%)
   patch tree reduce : 512.00 ns  (0.1%)
   gen split merge   : 391.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 261.00 ns  (0.1%)
   LB compute        : 456.21 us  (98.3%)
   LB move op cnt    : 0
   LB apply          : 2.11 us    (0.5%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (59.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (0.3%)
   patch tree reduce : 441.00 ns  (0.1%)
   gen split merge   : 381.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 270.00 ns  (0.1%)
   LB compute        : 435.38 us  (98.2%)
   LB move op cnt    : 0
   LB apply          : 2.08 us    (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hll with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.4%)
   patch tree reduce : 1022.00 ns (0.2%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 711.00 ns  (0.2%)
   LB compute        : 446.25 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 2.25 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (63.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8697e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.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 :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 408.41 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.7808e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.93240263065132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003652931508385532, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.8%)
   patch tree reduce : 1803.00 ns (0.2%)
   gen split merge   : 842.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.1%)
   LB compute        : 732.68 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.8225e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.76899872950901 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007305863016771064, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 420.46 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.7938e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.19250206384885 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010958794525156596, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.6%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 386.73 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8258e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.83601119306425 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014611726033542128, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 432.43 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.8595e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.51071501403771 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01826465754192766, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 370.27 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4524e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.34304624293797 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021917589050313192, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 380.74 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.8856e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.03516010292792 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025570520558698726, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 403.57 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.8621e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.56325677987627 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02922345206708426, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 403.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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    | 4.6128e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.56091390439687 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03287638357546979, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1914.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 417.31 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.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.8239e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.79726585795191 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036529315083855325, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 380.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8332e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.9833390976716 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04018224659224086, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 401.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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    | 4.8006e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.32953356923126 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04383517810062639, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.5%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 374.73 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8150e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.6176724755683 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047488109609011925, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 377.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.8135e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.58793306554249 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05114104111739746, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 414.68 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7810e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.93564920746529 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05479397262578299, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 375.34 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.6687e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.68363385294751 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.058446904134168524, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 377.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.4357e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.00695043411476 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06209983564255406, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 381.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4850e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.99692120957364 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06575276715093958, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.1%)
   patch tree reduce : 1694.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 471.48 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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.7901e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.11916759412581 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06940569865932511, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 410.22 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7119e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.54888530791867 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07305863016771064, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 391.34 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 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.8232e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.78274167850947 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07671156167609616, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 406.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8600e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.52233632999997 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08036449318448169, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 435.69 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7584e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.48262420565278 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08401742469286722, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 397.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0822e+05 | 65536 |      2 | 1.290e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.98098078285288 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08767035620125274, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1784.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 376.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9293e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.91276453256313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09132328770963827, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 377.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7779e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.87451135082685 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0949762192180238, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 418.20 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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    | 4.7248e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.80921720634497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09862915072640932, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 443.39 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7443e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.20076943154996 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10228208223479485, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1243.00 ns (0.3%)
   LB compute        : 385.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6233e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.77262809200565 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10593501374318037, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1632.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 380.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7324e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.96095915015667 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1095879452515659, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 391.71 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8295e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.90944489877891 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11324087675995143, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 386.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.7586e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.48599987415194 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11689380826833695, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 439.94 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 20.98 us   (94.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.8102e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.5226533698245 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12054673977672248, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1574.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 401.76 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7434e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.18273752089871 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.124199671285108, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 414.55 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7579e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.47308917955372 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12785260279349353, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 381.40 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7902e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.12163851879085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13150553430187906, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 381.20 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.7396e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.10511073636633 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13515846581026458, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 400.87 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (63.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7101e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.51342290117745 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1388113973186501, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 380.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8022e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.36244323300515 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14246432882703564, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 415.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8627e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.57535180713346 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14611726033542116, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 379.68 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.8220e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.75906268082542 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1497701918438067, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 400.58 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.86 us    (80.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.8792e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.90700189785603 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15342312335219221, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.5%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 357.04 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8633e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.5877358838447 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15707605486057774, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 375.19 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7790e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.89614045134942 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16072898636896327, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 408.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.7250e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.8123342021088 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1643819178773488, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 439.41 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.8033e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.38419558466322 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16803484938573432, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 383.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (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    | 4.8769e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.85968685881656 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17168778089411985, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 378.02 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7900e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.11711971047843 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17534071240250537, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 381.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7942e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.20170278032373 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1789936439108909, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 375.43 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9109e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.54272924557462 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18264657541927642, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 430.07 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.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.8631e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.58304849264475 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18629950692766195, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 387.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6994e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.29804122161056 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18995243843604748, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 378.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8187e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.69199169810229 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.193605369944433, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 380.71 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.7856e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.02842723584506 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19725830145281853, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 439.48 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8179e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.6762738023265 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20091123296120406, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 394.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7983e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.28294595249142 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20456416446958958, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 399.19 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8625e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.57231256621078 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2082170959779751, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 363.12 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.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.8439e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.19920582490631 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21187002748636063, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.1%)
   patch tree reduce : 1572.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.2%)
   LB compute        : 437.11 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
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.8160e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.63842241782358 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21552295899474616, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 410.55 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7409e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.13259913580926 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2191758905031317, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 383.97 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.8596e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.51291815821166 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2228288220115172, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1073.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 403.23 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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    | 4.8047e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.412825704838 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22648175351990274, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 391.72 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 20.35 us   (4.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.8658e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.63821486950143 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23013468502828827, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 390.25 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (63.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9059e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.44316427112312 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2337876165366738, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 357.23 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8625e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.57151550268163 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23744054804505932, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 393.67 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.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.8999e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.32145814760206 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24109347955344484, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 399.73 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.7983e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.28245249411698 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24474641106183037, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 400.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8993e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.30980802769874 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2483993425702159, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 438.50 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.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.8775e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.87299837721426 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2520522740786014, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1503.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 380.51 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8775e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.87277985175506 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25570520558698695, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1574.00 ns (0.4%)
   gen split merge   : 1053.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 374.53 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.6625e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.55922586326854 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2593581370953725, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 413.20 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (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    | 4.9137e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.59828330134332 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.263011068603758, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 415.65 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.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.8317e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.95265225038142 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26666400011214353, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.5%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 354.09 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (63.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9711e+05 | 65536 |      2 | 1.318e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.75012038489301 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27031693162052906, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1954.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 387.00 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0500e+05 | 65536 |      2 | 1.298e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.33419720006914 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2739698631289146, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 379.65 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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    | 5.0757e+05 | 65536 |      2 | 1.291e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.84915925615164 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2776227946373001, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.3%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 360.32 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0628e+05 | 65536 |      2 | 1.294e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.59175239307775 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28127572614568563, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.1%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 472.54 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0709e+05 | 65536 |      2 | 1.292e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.75438163735467 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28492865765407116, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 383.55 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4646e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.58813293038615 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2885815891624567, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 390.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8410e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.1407533044262 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2922345206708422, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 380.03 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.8421e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.1631959070933 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29588745217922774, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1593.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 465.40 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.8226e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.77092707913954 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29954038368761327, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 374.86 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.8265e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.84941797744811 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3031933151959988, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 387.41 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8137e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.59238344469402 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3068462467043843, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 405.10 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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.8497e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.31416749318868 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31049917821276984, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 387.62 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.7818e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.9522571452833 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31415210972115537, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 401.48 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.8748e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.8181128744055 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3178050412295409, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 1292.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 380.13 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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    | 4.8998e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.32080169836105 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3214579727379264, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 369.73 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8031e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.37938434683875 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32511090424631195, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1663.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 374.89 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.7595e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.50497849905139 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3287638357546975, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (0.3%)
   patch tree reduce : 1663.00 ns (0.1%)
   gen split merge   : 851.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.0%)
   LB compute        : 1750.78 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.9907e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.14440314344175 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.332416767263083, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1554.00 ns (0.4%)
   gen split merge   : 1143.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 381.07 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1217e+05 | 65536 |      2 | 1.280e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.77271322977484 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33606969877146853, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 362.00 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5659e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.6202907885298 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33972263027985405, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 379.93 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.8971e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.26627646001748 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3433755617882396, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 377.64 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8656e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.63383721796637 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3470284932966251, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 417.99 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.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.9309e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.94424485817551 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35068142480501063, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 381.92 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.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    | 4.8124e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.56717005066197 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35433435631339616, dt = 0.003652931508385533
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1383.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 412.45 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.0%)
Info: cfl dt = 0.003652931508385534                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9019e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.36299766824371 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3579872878217817, dt = 0.003652931508385534
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 377.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (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    | 4.9055e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.4348442811921 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3616402193301672, dt = 0.0036529315083855345
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 410.68 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.3%)
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.8534e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.388614794627 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36529315083855274, dt = 0.0036529315083855354
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 370.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.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    | 4.8670e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.66235590683952 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36894608234693826, dt = 0.003652931508385536
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 364.74 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.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    | 5.0577e+05 | 65536 |      2 | 1.296e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.48901761930266 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3725990138553238, dt = 0.003652931508385537
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 357.42 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.0%)
Info: cfl dt = 0.003652931508385537                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0919e+05 | 65536 |      2 | 1.287e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.17557634399716 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3762519453637093, dt = 0.003652931508385537
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.5%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 355.37 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.6%)
Info: cfl dt = 0.0036529315083855384                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0381e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.09603734116689 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37990487687209484, dt = 0.0036529315083855384
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 378.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.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.8784e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.8912902317234 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38355780838048037, dt = 0.00365293150838554
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 357.22 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.0%)
Info: cfl dt = 0.0036529315083855423                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1091e+05 | 65536 |      2 | 1.283e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.51908757009112 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3872107398888659, dt = 0.0036529315083855423
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.2%)
   patch tree reduce : 18.32 us   (4.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1253.00 ns (0.3%)
   LB compute        : 369.10 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.7%)
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    | 5.0535e+05 | 65536 |      2 | 1.297e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.40520282714715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3908636713972514, dt = 0.003652931508385544
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 1113.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 383.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.1%)
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.8963e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.24962201590041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39451660290563695, dt = 0.0036529315083855467
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1783.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 373.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.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    | 5.0152e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.6356332917773 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3981695344140225, dt = 0.0036529315083855506
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 384.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.6%)
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.8520e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.36064496816002 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.401822465922408, dt = 0.003652931508385554
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1372.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 393.02 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (67.4%)
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.8300e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.91868328286596 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4054753974307935, dt = 0.003652931508385559
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 405.69 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.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.7971e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.25835391416007 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4091283289391791, dt = 0.0036529315083855644
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 383.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.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.9308e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.94277905273772 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4127812604475647, dt = 0.0036529315083855705
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.1%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.2%)
   LB compute        : 481.71 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.5%)
Info: cfl dt = 0.0036529315083855796                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8521e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.36334953518178 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4164341919559503, dt = 0.0036529315083855796
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1652.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 382.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (63.6%)
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.7141e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.59324344213424 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42008712346433585, dt = 0.003652931508385589
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 416.27 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.5%)
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.7729e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.77313432655424 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42374005497272144, dt = 0.0036529315083856004
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 386.05 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.8%)
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.7353e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.02011111890945 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.427392986481107, dt = 0.0036529315083856143
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1472.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 408.41 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.62 us    (72.8%)
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.7025e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.36090955057402 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43104591798949266, dt = 0.003652931508385631
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.39 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.1%)
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.6426e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.15870042542244 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4346988494978783, dt = 0.00365293150838565
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 2.26 us    (0.5%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.32 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.1%)
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.7044e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.39950943456714 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43835178100626393, dt = 0.003652931508385673
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 391.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.8%)
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.8040e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.39747613284952 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4420047125146496, dt = 0.0036529315083857
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 403.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.8%)
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.6940e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.18996721086924 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4456576440230353, dt = 0.0036529315083857323
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 425.46 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.7%)
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.7439e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.19280999070875 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44931057553142106, dt = 0.0036529315083857704
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.8%)
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.8268e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.85434045904384 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4529635070398068, dt = 0.0036529315083858134
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 395.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.3%)
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.8275e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.86947624737702 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4566164385481926, dt = 0.0036529315083858645
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.08 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.86 us   (94.3%)
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.6983e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.27657947068353 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4602693700565785, dt = 0.003652931508385924
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.61 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.5%)
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.7588e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.49164246707231 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4639223015649644, dt = 0.003652931508385992
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 412.36 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.3%)
Info: cfl dt = 0.003652931508386073                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9235e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.79493678092246 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46757523307335036, dt = 0.003652931508386073
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1542.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 426.05 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.6%)
Info: cfl dt = 0.0036529315083861673                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7871e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.05934355069452 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47122816458173644, dt = 0.0036529315083861673
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1512.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 420.38 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.3%)
Info: cfl dt = 0.0036529315083862735                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7627e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.56873913561938 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47488109609012263, dt = 0.0036529315083862735
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 389.08 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.2%)
Info: cfl dt = 0.003652931508386398                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8341e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.00110741976188 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4785340275985089, dt = 0.003652931508386398
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.42 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.5%)
Info: cfl dt = 0.0036529315083865424                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8422e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.16479324468914 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4821869591068953, dt = 0.0036529315083865424
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 377.48 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.2%)
Info: cfl dt = 0.003652931508386707                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8130e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.57871577813191 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4858398906152818, dt = 0.003652931508386707
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.0%)
   patch tree reduce : 1663.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 516.23 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.7%)
Info: cfl dt = 0.0036529315083868963                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7223e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.75939088511926 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4894928221236685, dt = 0.0036529315083868963
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 410.76 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.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.8509e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.33987555744866 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49314575363205543, dt = 0.003652931508387113
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 376.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (66.0%)
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.7707e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.72882391507342 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49679868514044256, dt = 0.0036529315083873607
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 417.40 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.3%)
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.8364e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0469833247644 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.50045161664883, dt = 0.003652931508387644
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 392.25 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.5%)
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.8304e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.9274733458677 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5041045481572176, dt = 0.0036529315083879675
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 391.69 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.1%)
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.8589e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.49843505061567 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5077574796656056, dt = 0.0036529315083883365
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 403.60 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.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.8316e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.95081028481108 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5114104111739939, dt = 0.003652931508388755
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 386.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.1%)
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.7875e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.06576920663647 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150633426823826, dt = 0.0036529315083892303
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 421.12 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.3%)
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.7966e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.24985597127184 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5187162741907718, dt = 0.00365293150838977
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 409.45 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.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.8882e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.08750709838866 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5223692056991616, dt = 0.0036529315083903805
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 398.85 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.0%)
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.9274e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.87302970569947 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.526022137207552, dt = 0.00365293150839107
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.3%)
   LB compute        : 408.25 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.4%)
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.8032e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.3818269914636 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.529675068715943, dt = 0.0036529315083918493
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1963.00 ns (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 408.86 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.5%)
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    | 4.5642e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.5856175389332 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5333280002243349, dt = 0.003652931508392727
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1973.00 ns (0.5%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 399.58 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.8%)
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.8473e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.26660270822478 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5369809317327277, dt = 0.003652931508393717
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.5%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 375.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (62.6%)
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.7476e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.26567162987207 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5406338632411214, dt = 0.0036529315083948287
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 398.43 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.6%)
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.8569e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.45839376281104 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5442867947495162, dt = 0.0036529315083960786
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 443.72 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.5%)
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.7862e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.03969860071508 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5479397262579123, dt = 0.0036529315083974794
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 376.54 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (64.7%)
Info: cfl dt = 0.003652931508399049                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7937e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.19081059050433 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5515926577663098, dt = 0.003652931508399049
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 372.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.7%)
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.8088e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4934574152969 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5552455892747089, dt = 0.003652931508400804
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.08 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
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.4569e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.43190964252825 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5588985207831098, dt = 0.0036529315084027655
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 382.64 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.7%)
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.7923e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.16382190403809 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5625514522915125, dt = 0.003652931508404955
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1413.00 ns (0.3%)
   gen split merge   : 1272.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 422.26 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.3%)
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.8468e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.25752229766233 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5662043837999174, dt = 0.0036529315084073964
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1574.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 418.32 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.5%)
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.9804e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.93836327355594 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5698573153083248, dt = 0.0036529315084101147
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 391.21 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.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.7213e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.73878744855973 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5735102468167349, dt = 0.0036529315084131387
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.4%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 409.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.8%)
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.8878e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.07883528630504 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5771631783251481, dt = 0.003652931508416499
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 381.16 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.9%)
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.7181e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.67457775637011 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5808161098335646, dt = 0.0036529315084202277
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 422.28 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.4%)
Info: cfl dt = 0.003652931508424363                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8881e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.08631823715274 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5844690413419849, dt = 0.003652931508424363
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.1%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 500.27 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.0%)
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.8712e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.745875983882 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5881219728504092, dt = 0.003652931508428943
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 391.41 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.9%)
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.8625e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.5713214885314 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5917749043588382, dt = 0.0036529315084340105
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 400.95 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.3%)
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.7908e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.13313627841363 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5954278358672722, dt = 0.0036529315084396136
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 430.66 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.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.8734e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.79095317510075 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5990807673757118, dt = 0.0036529315084457997
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 388.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.4%)
Info: cfl dt = 0.003652931508452624                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8958e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.23927612641758 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6027336988841576, dt = 0.003652931508452624
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 381.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.1%)
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.8877e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.07714192436366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6063866303926102, dt = 0.003652931508460145
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 364.45 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (63.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.4468e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.23073041660952 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6100395619010703, dt = 0.003652931508468426
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1021.00 ns (0.2%)
   LB compute        : 402.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (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.8116e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.55113188909833 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6136924934095388, dt = 0.0036529315084775364
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1492.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 407.94 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.9%)
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.8666e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.65408107685633 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173454249180164, dt = 0.0036529315084875497
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 381.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.3%)
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.8205e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.72800460087568 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6209983564265039, dt = 0.0036529315084985444
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 397.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.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    | 4.8854e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.03028494411565 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6246512879350025, dt = 0.003652931508510606
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 414.83 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.8%)
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.8489e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.29929270044796 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6283042194435131, dt = 0.0036529315085238267
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 402.92 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.9%)
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.8204e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.72610784326042 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.631957150952037, dt = 0.0036529315085383073
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 403.43 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.3%)
Info: cfl dt = 0.0036529315085541522                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7443e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.19907889058102 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6356100824605753, dt = 0.0036529315085541522
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 379.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.7%)
Info: cfl dt = 0.003652931508571476                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8182e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.68359544141803 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6392630139691294, dt = 0.003652931508571476
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 400.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.1%)
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.8366e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.05136939259634 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6429159454777009, dt = 0.0036529315085904023
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 404.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.7%)
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.7876e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.06808931157997 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6465688769862913, dt = 0.0036529315086110607
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (0.4%)
   patch tree reduce : 1823.00 ns (0.1%)
   gen split merge   : 942.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.1%)
   LB compute        : 1414.65 us (98.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.8%)
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.7801e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.91917645466555 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6502218084949023, dt = 0.0036529315086335943
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 386.93 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.1%)
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.8431e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.18196525456379 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6538747400035358, dt = 0.003652931508658151
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 385.22 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.8%)
Info: cfl dt = 0.0036529315086848944                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9761e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.85112505781036 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.657527671512194, dt = 0.0036529315086848944
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 419.15 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.2%)
Info: cfl dt = 0.0036529315087139957                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8593e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.50700887412587 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6611806030208789, dt = 0.0036529315087139957
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1312.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 408.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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    | 4.8559e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.43859988217898 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6648335345295929, dt = 0.00365293150874564
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 382.98 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (65.6%)
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.3346e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.97883389034465 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6684864660383386, dt = 0.0036529315087800228
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1943.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 449.08 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.9%)
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.5944e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.19183596926216 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6721393975471186, dt = 0.0036529315088173545
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.3%)
   LB compute        : 379.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.5%)
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.7509e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.33319384397112 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.675792329055936, dt = 0.00365293150885786
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.6%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 363.20 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.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.6756e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.82034553676549 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6794452605647938, dt = 0.003652931508901777
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 354.48 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.0%)
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.8057e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4326667629124 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6830981920736956, dt = 0.0036529315089493595
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 389.53 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.2%)
Info: cfl dt = 0.0036529315090008787                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8535e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.39106488150527 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.686751123582645, dt = 0.0036529315090008787
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.1%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 467.25 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.0%)
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.5021e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.33889738262313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6904040550916459, dt = 0.003652931509056622
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 378.92 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.6%)
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.5219e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.73650107510872 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6940569866007026, dt = 0.0036529315091168957
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 398.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.7%)
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.1572e+05 | 65536 |      2 | 1.576e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.41878969327678 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6977099181098195, dt = 0.003652931509182024
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 423.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.0%)
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.6590e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.48730591825016 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7013628496190015, dt = 0.003652931509252355
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 399.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.6%)
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.8553e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.42691191237155 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7050157811282539, dt = 0.003652931509328253
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.4%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 361.77 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.6%)
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.8748e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.81916284216686 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7086687126375821, dt = 0.003652931509410108
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 1243.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 413.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.5%)
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.7581e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.47606908732523 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7123216441469923, dt = 0.0036529315094983327
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 404.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.8%)
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.5566e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.43312368213823 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7159745756564906, dt = 0.0036529315095933644
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 388.12 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.1%)
Info: cfl dt = 0.003652931509695666                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8686e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.69400469574227 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7196275071660839, dt = 0.003652931509695666
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 379.76 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.8%)
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.8187e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.69239768499465 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7232804386757796, dt = 0.0036529315098057283
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 400.44 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.1%)
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.8373e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.06642571857535 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7269333701855853, dt = 0.0036529315099240686
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 422.69 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.6%)
Info: cfl dt = 0.003652931510051237                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7296e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.90436969051629 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7305863016955094, dt = 0.003652931510051237
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 392.51 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.2%)
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    | 4.9101e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.52630359674241 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7342392332055606, dt = 0.0036529315101878138
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 428.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.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    | 4.8206e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.73068271677299 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7378921647157485, dt = 0.003652931510334411
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 389.66 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.6%)
Info: cfl dt = 0.0036529315104916766                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4737e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.77079475097834 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7415450962260829, dt = 0.0036529315104916766
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 385.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.5%)
Info: cfl dt = 0.0036529315106602935                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7355e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.02331140056403 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7451980277365746, dt = 0.0036529315106602935
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 430.68 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.6%)
Info: cfl dt = 0.0036529315108409835                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6548e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.40341224299476 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7488509592472349, dt = 0.0036529315108409835
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1574.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 399.73 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.6%)
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.5769e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.84054648445651 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7525038907580759, dt = 0.0036529315110345054
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1001.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 386.16 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.0%)
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.2137e+05 | 65536 |      2 | 1.555e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.55341306689532 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7561568222691104, dt = 0.0036529315112416617
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 406.34 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.0%)
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.8960e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.2440628136836 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7598097537803521, dt = 0.003652931511463296
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 412.34 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.8%)
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.8725e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.77203519612321 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7634626852918154, dt = 0.0036529315117002988
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 383.80 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.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.8127e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.57265188702969 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7671156168035157, dt = 0.003652931511953606
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1283.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 438.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.9%)
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.7731e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.77738516553026 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7707685483154693, dt = 0.003652931512224202
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 372.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.3%)
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.8592e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.50512419029111 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7744214798276935, dt = 0.003652931512513124
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 384.34 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (63.9%)
Info: cfl dt = 0.0036529315128214592                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8268e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.85620811815339 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7780744113402066, dt = 0.0036529315128214592
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 442.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.3%)
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.5817e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.93611737941087 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.781727342853028, dt = 0.003652931513150356
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 391.39 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.2%)
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.8178e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.67461585764603 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7853802743661784, dt = 0.003652931513501014
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 361.96 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.4%)
Info: cfl dt = 0.0036529315138746983                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8063e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.44431485793969 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7890332058796794, dt = 0.0036529315138746983
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 369.08 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.5%)
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.8110e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.5374264288141 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7926861373935541, dt = 0.0036529315142727332
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 452.63 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.5%)
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.8817e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.95650730415915 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7963390689078268, dt = 0.00365293151469651
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 389.25 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.3%)
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.7812e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.94113175091044 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7999920004225233, dt = 0.003652931515147489
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 406.18 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (67.8%)
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.8421e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.16256578122754 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8036449319376707, dt = 0.003652931515627198
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 376.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.2%)
Info: cfl dt = 0.0036529315161372405                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7254e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.8213338146587 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8072978634532979, dt = 0.0036529315161372405
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 375.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.1%)
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.8568e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.45723547568916 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8109507949694351, dt = 0.003652931516679297
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.3%)
   LB compute        : 386.75 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 19.94 us   (4.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.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.8433e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.18566993123711 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8146037264861145, dt = 0.0036529315172551258
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 409.89 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.4%)
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.8208e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.73448183533421 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8182566580033696, dt = 0.0036529315178665677
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 385.62 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (64.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.5365e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.02983431121318 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8219095895212362, dt = 0.00365293151851555
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1854.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 377.36 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.9%)
Info: cfl dt = 0.0036529315192040885                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8677e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.6759971195185 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8255625210397517, dt = 0.0036529315192040885
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 411.48 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.0%)
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.8329e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.9780948324194 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8292154525589558, dt = 0.003652931519934291
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 363.34 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.8%)
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.7890e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.09638896488266 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8328683840788901, dt = 0.003652931520708361
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 391.38 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.7%)
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.8719e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.75961254381674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8365213155995984, dt = 0.003652931521528602
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.5%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 391.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.9%)
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.8015e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.34689263286737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.840174247121127, dt = 0.0036529315223974208
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 383.41 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.2%)
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.8291e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.90141891256376 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8438271786435244, dt = 0.0036529315233173295
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 418.32 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.0%)
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.8021e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.36054352578917 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8474801101668418, dt = 0.0036529315242909504
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 375.00 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.7%)
Info: cfl dt = 0.003652931525321021                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8365e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.04909651387248 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8511330416911327, dt = 0.003652931525321021
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 448.13 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.1%)
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.9233e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.79259414538465 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8547859732164537, dt = 0.0036529315264103974
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 364.11 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.1%)
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.9138e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.60056518372409 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8584389047428641, dt = 0.0036529315275620603
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 399.23 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.2%)
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.7670e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.656040500528 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8620918362704262, dt = 0.003652931528779114
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 396.64 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.2%)
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.8891e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.1054003907132 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8657447677992053, dt = 0.003652931530064796
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 393.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.6%)
Info: cfl dt = 0.003652931531422479                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8832e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.98642138401765 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8693976993292701, dt = 0.003652931531422479
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 405.02 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.0%)
Info: cfl dt = 0.0036529315328556783                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8855e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.03224038909575 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8730506308606926, dt = 0.0036529315328556783
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 416.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.2%)
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    | 4.9448e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.22234398477289 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8767035623935483, dt = 0.003652931534368053
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.00 us   (5.1%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 397.29 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.5%)
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.9485e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.29680452340193 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8803564939279164, dt = 0.003652931535963412
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.3%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 384.00 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (65.7%)
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    | 4.9167e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6594628644366 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8840094254638798, dt = 0.0036529315376457195
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 399.52 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.5%)
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.8186e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.69144504682298 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8876623570015255, dt = 0.0036529315394191017
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1532.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 435.93 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.5%)
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    | 4.8604e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.53043054526854 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913152885409447, dt = 0.0036529315412878486
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 428.49 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (68.2%)
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    | 4.9376e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.07869020950686 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8949682200822325, dt = 0.0036529315432564224
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 411.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (62.8%)
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.8211e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.74161228495194 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.898621151625489, dt = 0.0036529315453294616
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 411.21 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.8%)
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    | 5.0164e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.6591647274919 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9022740831708184, dt = 0.0036529315475117862
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1984.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 369.94 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
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.9426e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.17996308068106 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9059270147183301, dt = 0.003652931549808403
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.5%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 367.61 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.0%)
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.9498e+05 | 65536 |      2 | 1.324e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.32258488653534 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9095799462681385, dt = 0.0036529315522245156
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 399.00 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.2%)
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.8199e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.71740023340386 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9132328778203631, dt = 0.003652931554765526
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 385.17 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.6%)
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.8215e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.7486957125799 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9168858093751286, dt = 0.0036529315574370417
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1432.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.3%)
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.9472e+05 | 65536 |      2 | 1.325e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.27090444777019 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9205387409325657, dt = 0.0036529315602448834
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 381.09 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.3%)
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.9441e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.20819439432104 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9241916724928106, dt = 0.0036529315631950894
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 367.38 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (63.8%)
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.9270e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.86560759697296 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9278446040560058, dt = 0.0036529315662939257
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.53 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.7%)
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.9649e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.62731134842406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9314975356222996, dt = 0.0036529315695478888
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1502.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 419.41 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.6%)
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.9920e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.17014840426225 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9351504671918476, dt = 0.0036529315729637146
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.2%)
   LB compute        : 437.00 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (66.1%)
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.9682e+05 | 65536 |      2 | 1.319e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.69264469273543 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9388033987648113, dt = 0.0036529315765483844
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 378.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.1%)
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.8258e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.83486640336388 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9424563303413597, dt = 0.0036529315803091357
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 402.03 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.7%)
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.9256e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.83868153061351 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9461092619216688, dt = 0.0036529315842534636
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 425.72 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.2%)
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.8948e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.2205039128017 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9497621935059223, dt = 0.003652931588389134
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 389.24 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.0%)
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.9229e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.7834442298008 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9534151250943114, dt = 0.003652931592724187
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.2%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 401.20 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.5%)
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.8943e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.21020031973858 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9570680566870355, dt = 0.0036529315972669463
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 1592.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.1%)
   LB compute        : 562.69 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.2%)
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.9123e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.57017317024027 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9607209882843025, dt = 0.0036529316020260296
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 403.09 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.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    | 5.0655e+05 | 65536 |      2 | 1.294e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.6449374577497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9643739198863286, dt = 0.0036529316070103533
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.5%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 363.99 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.4%)
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.8619e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.55913962365607 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9680268514933389, dt = 0.0036529316122291414
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 375.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.3%)
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.9170e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.66609436258139 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.971679783105568, dt = 0.003652931617691937
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 364.65 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.0%)
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.9233e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.79259070615407 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.97533271472326, dt = 0.003652931623408606
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 372.10 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (64.5%)
Info: cfl dt = 0.00365293162938935                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9001e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.3256228800158 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9789856463466686, dt = 0.00365293162938935
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 389.14 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.0%)
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.8982e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.28712389392057 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.982638577976058, dt = 0.0036529316356447143
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 381.70 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.5%)
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.8584e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.48908053989129 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9862915096117028, dt = 0.003652931642185595
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 426.60 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.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.8794e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.9106582688731 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9899444412538884, dt = 0.003652931649023252
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1373.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 380.03 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.8%)
Info: cfl dt = 0.003652931656169317                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8879e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0820174754186 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9935973729029116, dt = 0.003652931656169317
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1462.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 404.74 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.1%)
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.7827e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.96959818652351 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9972503045590809, dt = 0.003652931663635801
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 420.16 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.9%)
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.8397e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.1133593492796 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0009032362227168, dt = 0.0036529316714351084
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 387.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.9%)
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.9777e+05 | 65536 |      2 | 1.317e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.8840081613903 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.004556167894152, dt = 0.0036529316795800423
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 402.94 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (67.1%)
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.4849e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.99454503075818 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.008209099573732, dt = 0.0036529316880838177
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 382.42 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.3%)
Info: cfl dt = 0.0036529316969600724                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8554e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.42834946609729 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0118620312618158, dt = 0.0036529316969600724
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 395.71 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.5%)
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.6939e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.18783422107126 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0155149629587759, dt = 0.003652931706222877
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 439.33 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
Info: cfl dt = 0.003652931715886745                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8617e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.55595206329494 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0191678946649987, dt = 0.003652931715886745
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 430.48 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.7%)
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.6465e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.23746650172022 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0228208263808853, dt = 0.0036529317259666435
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 383.35 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.0%)
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.8263e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.84434414961437 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.026473758106852, dt = 0.0036529317364780056
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1534.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 378.47 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.4%)
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.8367e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.05368466438343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.03012668984333, dt = 0.003652931747436743
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 371.55 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.7%)
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.8036e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.39041814938707 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0337796215907666, dt = 0.003652931758859253
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 410.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.4%)
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.7564e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.44268302018368 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0374325533496258, dt = 0.0036529317707624364
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 443.49 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (65.1%)
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.8659e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.63962754068034 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0410854851203883, dt = 0.0036529317831637048
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 443.61 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (68.3%)
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.8871e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.06530836446778 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.044738416903552, dt = 0.0036529317960809944
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 424.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (67.1%)
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.7740e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.79613136380891 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.048391348699633, dt = 0.0036529318095327797
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 402.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.1%)
Info: cfl dt = 0.003652931823538084                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8414e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.14800922143215 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0520442805091659, dt = 0.003652931823538084
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 412.82 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.0%)
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.8865e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.05226286383314 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.055697212332704, dt = 0.003652931838116492
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 385.09 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (67.5%)
Info: cfl dt = 0.003652931853288167                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8382e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0842117248358 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0593501441708204, dt = 0.003652931853288167
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 442.46 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.9%)
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.7190e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.69158653891085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0630030760241085, dt = 0.0036529318690738575
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1342.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 395.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.2%)
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.8702e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.72577073596074 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0666560078931824, dt = 0.003652931885494918
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.5%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 358.12 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.4%)
Info: cfl dt = 0.003652931902573315                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8524e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.36840438081363 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0703089397786774, dt = 0.003652931902573315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 370.92 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.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.8575e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.47048271197436 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0739618716812507, dt = 0.0036529319203316467
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 388.02 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.6%)
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.7641e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.59671688343376 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0776148036015822, dt = 0.0036529319387931555
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 374.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.2%)
Info: cfl dt = 0.0036529319579817433                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8495e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.31111276166997 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0812677355403755, dt = 0.0036529319579817433
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 383.88 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.3%)
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.8529e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.37934258073908 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0849206674983571, dt = 0.0036529319779219816
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 381.61 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.8%)
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.8499e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.31953370887663 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.088573599476279, dt = 0.0036529319986391318
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 17.57 us   (4.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 381.13 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.4%)
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.2951e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.18657416081496 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0922265314749182, dt = 0.0036529320201591554
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 398.32 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.4%)
Info: cfl dt = 0.003652932042508734                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8127e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.57254051139148 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0958794634950775, dt = 0.003652932042508734
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 407.38 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.5%)
Info: cfl dt = 0.003652932065715281                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8413e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.14685639681778 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0995323955375862, dt = 0.003652932065715281
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 379.47 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.4%)
Info: cfl dt = 0.003652932089806959                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7230e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.77331283098414 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1031853276033015, dt = 0.003652932089806959
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 415.63 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.2%)
Info: cfl dt = 0.003652932114812694                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8262e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.84383816277732 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1068382596931083, dt = 0.003652932114812694
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 387.48 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (63.7%)
Info: cfl dt = 0.003652932140762194                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8949e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.22277258837073 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.110491191807921, dt = 0.003652932140762194
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 370.29 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.9%)
Info: cfl dt = 0.003652932167685963                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9134e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.59327664359945 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1141441239486831, dt = 0.003652932167685963
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 388.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.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    | 4.8450e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.22021165852517 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.117797056116369, dt = 0.0036529321956153197
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1013.00 ns (0.2%)
   LB compute        : 478.99 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.3%)
Info: cfl dt = 0.0036529322245824115                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8649e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.62036120111404 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1214499883119844, dt = 0.0036529322245824115
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 417.90 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.1%)
Info: cfl dt = 0.003652932254620234                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8185e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.6895835443719 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1251029205365668, dt = 0.003652932254620234
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.5%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 360.16 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.0%)
Info: cfl dt = 0.0036529322857626473                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7802e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.9203154607195 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.128755852791187, dt = 0.0036529322857626473
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 385.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (63.7%)
Info: cfl dt = 0.0036529323180443936                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9042e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.40793566899737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1324087850769495, dt = 0.0036529323180443936
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1353.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 405.02 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.3%)
Info: cfl dt = 0.0036529323515011145                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9535e+05 | 65536 |      2 | 1.323e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.39797191636917 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1360617173949938, dt = 0.0036529323515011145
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 392.84 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (63.9%)
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.8754e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.83071805745557 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.139714649746495, dt = 0.0036529323861693693
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.3%)
   LB compute        : 377.67 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.2%)
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.8520e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.3603367903901 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1433675821326643, dt = 0.0036529324220866545
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 378.65 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.4%)
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.8618e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.55693444660709 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.147020514554751, dt = 0.003652932459291418
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 397.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.8%)
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.8829e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.98201328662621 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1506734470140423, dt = 0.0036529324978230833
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.4%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 395.63 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.8%)
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.8717e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.75719184373143 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1543263795118655, dt = 0.003652932537722065
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1924.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 390.06 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.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.7947e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.21150815304165 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1579793120495876, dt = 0.00365293257902979
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 425.98 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.3%)
Info: cfl dt = 0.0036529326217887123                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9139e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.60391238125663 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1616322446286174, dt = 0.0036529326217887123
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 399.75 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.3%)
Info: cfl dt = 0.0036529326660423396                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8989e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.30150304953742 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.165285177250406, dt = 0.0036529326660423396
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 396.89 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
Info: cfl dt = 0.003652932711835247                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8791e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.90440375922691 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1689381099164484, dt = 0.003652932711835247
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 394.90 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.4%)
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.8620e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.56184348102042 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1725910426282837, dt = 0.0036529327592131015
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.3%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 386.37 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.7%)
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.9036e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.39725184444494 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.176243975387497, dt = 0.0036529328082226804
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 352.37 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.8%)
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.8684e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.69017564246502 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1798969081957196, dt = 0.0036529328589118898
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 419.27 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (65.3%)
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.8470e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.2599492247909 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1835498410546315, dt = 0.0036529329113297927
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 399.70 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.1%)
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.8585e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.49213997099581 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1872027739659612, dt = 0.003652932965526619
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 425.16 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.5%)
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.9219e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.76287129438074 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1908557069314878, dt = 0.0036529330215537984
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 404.21 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.7%)
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.8933e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.19063684915496 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1945086399530416, dt = 0.0036529330794639724
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1673.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 390.75 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.6%)
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.5912e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.12736020574155 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1981615730325055, dt = 0.0036529331393110255
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 398.82 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.1%)
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.7972e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.26067627517457 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2018145061718164, dt = 0.0036529332011500976
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 368.07 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.3%)
Info: cfl dt = 0.003652933265037614                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8256e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.83174363341327 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2054674393729665, dt = 0.003652933265037614
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1293.00 ns (0.3%)
   LB compute        : 385.20 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.9%)
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.7478e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.26916751183659 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2091203726380042, dt = 0.003652933331031303
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 400.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (62.1%)
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.4435e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.1634200136592 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2127733059690355, dt = 0.003652933399190225
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.5%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 359.45 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.8%)
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.9893e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.11710413529525 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2164262393682257, dt = 0.0036529334695747854
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 405.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.9851e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.03164509199699 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2200791728378004, dt = 0.003652933542246769
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 398.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.3%)
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.7653e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.6214364643726 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2237321063800473, dt = 0.0036529336172693577
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 408.62 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.1%)
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.8824e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.97149051549175 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2273850399973165, dt = 0.0036529336947071552
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1402.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 408.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.4%)
Info: cfl dt = 0.0036529337746262123                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8821e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.96580418953894 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2310379736920236, dt = 0.0036529337746262123
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 398.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.2%)
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.8300e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.91968770356863 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.23469090746665, dt = 0.003652933857094048
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 399.26 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.0%)
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.7969e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.25549961788253 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.238343841323744, dt = 0.003652933942179682
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.2%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 399.90 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.4%)
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.8014e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.345010402632 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2419967752659236, dt = 0.0036529340299536477
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 379.66 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (63.6%)
Info: cfl dt = 0.00365293412048803                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8506e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.33250408970083 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2456497092958771, dt = 0.00365293412048803
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 427.63 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.7%)
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.9648e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.62527978169823 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2493026434163652, dt = 0.003652934213856481
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.70 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.5%)
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.7990e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.29722751931925 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2529555776302217, dt = 0.0036529343101342525
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 385.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.9%)
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.7463e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.24017613595883 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.256608511940356, dt = 0.003652934409398217
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 370.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.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.9584e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.49659660444692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2602614463497543, dt = 0.003652934511726896
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 371.92 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.6%)
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    | 2.9778e+05 | 65536 |      2 | 2.201e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.752583583890726 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2639143808614812, dt = 0.003652934617200489
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 382.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.0%)
Info: cfl dt = 0.0036529347259008946                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8279e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.87738421431693 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2675673154786817, dt = 0.0036529347259008946
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 382.31 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.2%)
Info: cfl dt = 0.0036529348379117444                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8190e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.69806696621255 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2712202502045826, dt = 0.0036529348379117444
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.2%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 428.96 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.6%)
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.6356e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.01840003434162 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2748731850424944, dt = 0.0036529349533184216
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 401.47 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.4%)
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.7977e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.27159685815471 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.278526119995813, dt = 0.0036529350722080993
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 376.31 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (63.9%)
Info: cfl dt = 0.003652935194669759                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8074e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.46710323632944 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.282179055068021, dt = 0.003652935194669759
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 372.46 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1974.00 ns (64.4%)
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.8036e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.3901805816117 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2858319902626907, dt = 0.0036529353207942223
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 433.01 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.8%)
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.8737e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.79594953383834 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2894849255834848, dt = 0.003652935450674182
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 398.87 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.5%)
Info: cfl dt = 0.003652935584404224                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8489e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.29910758245005 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.293137861034159, dt = 0.003652935584404224
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 377.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.6%)
Info: cfl dt = 0.0036529357220808647                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8260e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.83906501345349 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2967907966185632, dt = 0.0036529357220808647
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 378.11 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.0%)
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.7582e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.47833294960529 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3004437323406441, dt = 0.003652935863802572
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 433.89 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (62.6%)
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.7883e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.0819569319632 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3040966682044468, dt = 0.0036529360096698
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 382.56 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.8%)
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.7842e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.00138576787506 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3077496042141166, dt = 0.0036529361597850154
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.2%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 409.02 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.3%)
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.7354e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.02129905974363 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3114025403739016, dt = 0.003652936314252729
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.1%)
   patch tree reduce : 1502.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1173.00 ns (0.2%)
   LB compute        : 508.83 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (65.7%)
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.8704e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.7295020620017 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3150554766881544, dt = 0.0036529364731795267
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 399.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (67.1%)
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.6172e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.65043565510071 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3187084131613338, dt = 0.0036529366366741018
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.3%)
   patch tree reduce : 1563.00 ns (0.1%)
   gen split merge   : 1202.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.1%)
   LB compute        : 1735.79 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.5%)
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.6488e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.28276070820912 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.322361349798008, dt = 0.0036529368048472764
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 369.04 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.3%)
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.7773e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.86276013924845 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3260142866028553, dt = 0.0036529369778120443
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.2%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 381.87 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.2%)
Info: cfl dt = 0.0036529371556835943                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7654e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.6232201549385 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3296672235806672, dt = 0.0036529371556835943
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 377.03 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (62.6%)
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.7648e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.61151851768493 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3333201607363507, dt = 0.003652937338579345
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.2%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 443.54 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.5%)
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.8674e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.67019682006446 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3369730980749301, dt = 0.0036529375266189743
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 397.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.1%)
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    | 5.0044e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.41921620730021 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3406260356015491, dt = 0.0036529377199244558
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 381.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.8%)
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.7463e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.24094031418936 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3442789733214735, dt = 0.003652937918620086
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 401.48 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.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    | 4.8636e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.59447300072132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3479319112400936, dt = 0.0036529381228325186
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 390.82 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.7%)
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.6537e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.38127416114574 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.351584849362926, dt = 0.003652938332690799
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 380.10 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.2%)
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.4789e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.87434006130552 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.355237787695617, dt = 0.0036529385483263952
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 428.09 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.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.5055e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.40780715893425 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3588907262439434, dt = 0.0036529387698732317
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1974.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 446.30 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.4%)
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.7807e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.93060167854692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3625436650138165, dt = 0.0036529389974677222
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 385.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.6%)
Info: cfl dt = 0.0036529392312488083                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7745e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.80615651227156 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3661966040112843, dt = 0.0036529392312488083
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 405.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.1%)
Info: cfl dt = 0.0036529394713579848                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8550e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.42160437353228 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.369849543242533, dt = 0.0036529394713579848
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.1%)
   patch tree reduce : 1532.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 456.99 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.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.9026e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.37595222501251 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.373502482713891, dt = 0.003652939717939343
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 413.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.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    | 4.8720e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.76339159387805 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3771554224318305, dt = 0.003652939971139598
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 397.68 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.0%)
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.7507e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.32862210554143 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3808083624029701, dt = 0.0036529402311081304
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 372.30 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.6%)
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    | 4.8407e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.13370972158144 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3844613026340782, dt = 0.0036529404979970146
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 393.79 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.1%)
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.7940e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.19706062813569 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3881142431320752, dt = 0.0036529407719610597
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 424.28 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.0%)
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.8796e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.91517427065916 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3917671839040362, dt = 0.003652941053157839
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 383.11 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.5%)
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    | 4.7979e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.27576092515935 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.395420124957194, dt = 0.003652941341747736
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 380.48 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.8%)
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    | 4.8529e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.38013283278569 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3990730662989417, dt = 0.0036529416378939675
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 422.99 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.6%)
Info: cfl dt = 0.003652941941762631                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8735e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.79249696457735 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4027260079368356, dt = 0.003652941941762631
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.03 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.0%)
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.8762e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.84747819016692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4063789498785981, dt = 0.0036529422535227355
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 406.23 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.2%)
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.8537e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.39548797968902 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4100318921321209, dt = 0.00365294257334624
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 395.09 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 21.54 us   (5.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.1%)
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.9656e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   1.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.64053713393587 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4136848347054671, dt = 0.0036529429014080903
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 400.48 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.9%)
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    | 5.0245e+05 | 65536 |      2 | 1.304e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.82254633295092 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4173377776068752, dt = 0.003652943237886257
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.3%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1253.00 ns (0.3%)
   LB compute        : 385.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
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    | 5.0380e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.0928491948083 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4209907208447614, dt = 0.0036529435829617727
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 383.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.3%)
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.9889e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.10898365532299 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4246436644277232, dt = 0.003652943936818769
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 446.15 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (68.8%)
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.9295e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.91637990029626 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4282966083645419, dt = 0.0036529442996445158
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 841.00 ns  (0.2%)
   LB compute        : 389.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.1%)
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.8197e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.71405109705255 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4319495526641863, dt = 0.0036529446716294595
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 389.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.0%)
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.8799e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.92049467699509 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4356024973358157, dt = 0.003652945052967262
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 377.44 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.0%)
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.9865e+05 | 65536 |      2 | 1.314e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.06012227610408 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.439255442388783, dt = 0.003652945443854837
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 458.38 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.2%)
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.8163e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.6444577941564 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4429083878326376, dt = 0.0036529458444923947
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (0.4%)
   patch tree reduce : 1773.00 ns (0.1%)
   gen split merge   : 952.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.1%)
   LB compute        : 1290.12 us (98.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.4%)
Info: cfl dt = 0.003652946255083473                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6841e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.99136114165519 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4465613336771301, dt = 0.003652946255083473
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1073.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 399.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (65.1%)
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.7242e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.79660983383397 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4502142799322135, dt = 0.0036529466758349833
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 378.02 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 20.71 us   (94.2%)
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.8268e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.85650316350338 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4538672266080486, dt = 0.003652947106957252
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 370.64 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.7%)
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.9029e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.38198820352227 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4575201737150059, dt = 0.0036529475486640514
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 371.49 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.4%)
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.9035e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.39557699283559 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4611731212636698, dt = 0.0036529480011726484
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 376.30 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.8%)
Info: cfl dt = 0.0036529484647038436                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7245e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.80229717841596 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4648260692648425, dt = 0.0036529484647038436
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.1%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 455.17 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.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.8136e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.58988753432902 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4684790177295464, dt = 0.0036529489394820083
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 397.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.7%)
Info: cfl dt = 0.00365294942573513                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8418e+05 | 65536 |      2 | 1.354e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.15664477672583 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4721319666690285, dt = 0.00365294942573513
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 429.68 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.5%)
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.6800e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.91099127903149 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4757849160947636, dt = 0.00365294992369485
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 372.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.3%)
Info: cfl dt = 0.0036529504335965075                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7668e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.65244989330861 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4794378660184584, dt = 0.0036529504335965075
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 398.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.2%)
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.9115e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.55628359727902 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4830908164520549, dt = 0.0036529509556791806
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 429.90 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.5%)
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    | 4.9026e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.37695475238968 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.486743767407734, dt = 0.0036529514901857247
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 453.01 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.0%)
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.8267e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.85477538518698 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4903967188979197, dt = 0.0036529520373628226
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 396.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.2%)
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.9847e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.02401933337956 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4940496709352826, dt = 0.0036529525974610174
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 401.36 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.3%)
Info: cfl dt = 0.0036529531707347636                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8951e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.22695572467657 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4977026235327437, dt = 0.0036529531707347636
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1603.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 443.46 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.1%)
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.8920e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.16393229030179 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5013555767034785, dt = 0.003652953757442463
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 400.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.8%)
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.9275e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.87617882108916 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.505008530460921, dt = 0.003652954357846513
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 448.20 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (66.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.8778e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.87907552767723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5086614848187676, dt = 0.0036529549722133453
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 407.10 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.2%)
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.8468e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.2574888625094 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.512314439790981, dt = 0.0036529556008134743
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 392.66 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.9%)
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.9793e+05 | 65536 |      2 | 1.316e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.91689797894448 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5159673953917945, dt = 0.003652956243921535
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 384.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.0%)
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    | 5.0851e+05 | 65536 |      2 | 1.289e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.03821326826694 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.519620351635716, dt = 0.003652956901816333
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 427.65 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.4%)
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    | 5.1027e+05 | 65536 |      2 | 1.284e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.39176402702897 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5232733085375325, dt = 0.003652957574780884
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 436.28 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.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.9234e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.79519271988426 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5269262661123133, dt = 0.003652958263102461
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 386.07 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.3%)
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.9403e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.13446953639608 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5305792243754157, dt = 0.003652958967072636
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 410.24 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.3%)
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.8692e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.70643101446751 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5342321833424883, dt = 0.003652959686987328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 406.58 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.8%)
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.8892e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.10850677652726 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5378851430294758, dt = 0.003652960423146844
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 443.41 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (65.2%)
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.9096e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.51713595420391 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5415381034526225, dt = 0.0036529611758559294
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 395.23 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.5%)
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.7620e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.55509833322233 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5451910646284785, dt = 0.0036529619454238093
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 385.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.2%)
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.9223e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.77286723346951 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5488440265739023, dt = 0.0036529627321642342
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 425.08 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.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.9299e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.92473680669592 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5524969893060665, dt = 0.0036529635363955278
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 385.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (63.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.8913e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.14992860253514 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.556149952842462, dt = 0.003652964358440631
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 407.16 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.8%)
Info: cfl dt = 0.003652965198627152                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7711e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.73759479511601 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5598029172009027, dt = 0.003652965198627152
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 397.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.5%)
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.8701e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.7256616476134 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.56345588239953, dt = 0.003652966057287404
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 407.44 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.7%)
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.9131e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.58855755337565 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5671088484568174, dt = 0.0036529669347584648
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 400.58 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.0%)
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.8661e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.644586771096 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5707618153915759, dt = 0.0036529678313822075
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 406.47 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.4%)
Info: cfl dt = 0.0036529687475053635                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8356e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.03273179816512 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.574414783222958, dt = 0.0036529687475053635
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 397.70 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.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    | 4.8864e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0518671064726 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5780677519704633, dt = 0.0036529696834795592
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 384.08 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.1%)
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.9123e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.57242663702613 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5817207216539428, dt = 0.003652970639661367
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1403.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 403.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.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    | 4.8509e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.34063224769831 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5853736922936041, dt = 0.0036529716164123496
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 390.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.0%)
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.9429e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.18656413832582 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5890266639100166, dt = 0.003652972614099115
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 379.28 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.2%)
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.9204e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.73398705178315 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5926796365241156, dt = 0.0036529736330933532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 404.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.4%)
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.8910e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.1445566968286 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5963326101572088, dt = 0.0036529746737718975
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.58 us   (4.8%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 1183.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 417.16 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.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.7905e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.12782625852269 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5999855848309807, dt = 0.00365297573651676
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 1273.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 427.74 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.5%)
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.8013e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.34483371251946 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6036385605674974, dt = 0.003652976821715189
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 398.92 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.0%)
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.6925e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.16068555622341 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6072915373892127, dt = 0.003652977929759713
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 410.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.0%)
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.8975e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.27533433779645 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6109445153189723, dt = 0.0036529790610481915
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 393.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (61.9%)
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.8813e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.94929184458869 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6145974943800205, dt = 0.003652980215983861
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 406.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.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.9408e+05 | 65536 |      2 | 1.326e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.14467971289518 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6182504745960045, dt = 0.0036529813949753892
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1432.00 ns (0.3%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 434.10 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.6%)
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.9213e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.75387903260597 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.62190345599098, dt = 0.0036529825984369197
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.3%)
   LB compute        : 367.50 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.1%)
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.9078e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.4829323099 (tsim/hr)                                [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6255564385894168, dt = 0.003652983826788123
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 378.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (62.4%)
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.5568e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.43822608025053 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6292094224162048, dt = 0.003652985080454245
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 382.98 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.9%)
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.8769e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.86137763033038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6328624074966591, dt = 0.00365298635986616
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 420.53 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.1%)
Info: cfl dt = 0.003652987665460414                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9125e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.57643734842527 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6365153938565253, dt = 0.003652987665460414
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 388.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.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.8653e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.63024544895471 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401683815219859, dt = 0.0036529889976792823
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 432.12 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.7%)
Info: cfl dt = 0.003652990356970816                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8633e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.58860328117412 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6438213705196651, dt = 0.003652990356970816
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1443.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 411.57 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.0%)
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.8996e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.31830446766195 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.647474360876636, dt = 0.003652991743788891
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 404.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.1%)
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.8263e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.84755501156526 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6511273526204249, dt = 0.0036529931585932616
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.34 us   (5.2%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 395.43 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.5%)
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.8284e+05 | 65536 |      2 | 1.357e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.88876093157214 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6547803457790182, dt = 0.003652994601849607
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 386.85 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.3%)
Info: cfl dt = 0.003652996074029587                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6526e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.36067694597757 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6584333403808678, dt = 0.003652996074029587
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 371.81 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.4%)
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.8336e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.99377582411175 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6620863364548975, dt = 0.0036529975756108887
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1854.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 373.57 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.7%)
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.8360e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.04093053951568 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6657393340305084, dt = 0.003652999107077279
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 377.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.4%)
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    | 5.0035e+05 | 65536 |      2 | 1.310e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.40326751132234 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6693923331375857, dt = 0.0036530006689186587
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 399.96 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.1%)
Info: cfl dt = 0.0036530022616311063                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9935e+05 | 65536 |      2 | 1.312e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.20127270639202 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6730453338065043, dt = 0.0036530022616311063
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 421.17 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.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    | 4.9066e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.45756382180737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6766983360681353, dt = 0.003653003885716939
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 449.00 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.7%)
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.5460e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.22296986070019 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6803513399538523, dt = 0.0036530055416847565
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 404.19 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.4%)
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.6180e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.66734458807387 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6840043454955371, dt = 0.0036530072300494953
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 430.14 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.2%)
Info: cfl dt = 0.003653008951332481                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6503e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.3157104840625 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6876573527255867, dt = 0.003653008951332481
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 425.36 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.5%)
Info: cfl dt = 0.00365301070606148                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6744e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.79843713873876 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6913103616769192, dt = 0.00365301070606148
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 403.21 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.1%)
Info: cfl dt = 0.0036530124947707523                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5849e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.00369458955124 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6949633723829807, dt = 0.0036530124947707523
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 396.01 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.5%)
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.9080e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.48783172408345 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6986163848777514, dt = 0.0036530143180011
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 383.58 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.4%)
Info: cfl dt = 0.0036530161762999263                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8941e+05 | 65536 |      2 | 1.339e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.20879976763554 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7022693991957525, dt = 0.0036530161762999263
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 403.28 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.9%)
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.7108e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.52951854355643 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7059224153720525, dt = 0.00365301807022128
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1562.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 416.17 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.6%)
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.8764e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.85286506505486 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7095754334422737, dt = 0.0036530200003259124
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 404.17 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.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.7917e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.15257494600465 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7132284534425997, dt = 0.003653021967181332
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 392.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.5%)
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.9918e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.1682446047452 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.716881475409781, dt = 0.003653023971361851
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 397.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.1%)
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.7085e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.48443710471103 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.720534499381143, dt = 0.003653026013448643
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 1173.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 434.77 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (66.7%)
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.9652e+05 | 65536 |      2 | 1.320e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.63550542043666 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7241875253945915, dt = 0.0036530280940297944
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 409.81 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (65.1%)
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    | 5.0089e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.5120031617095 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7278405534886214, dt = 0.0036530302137003567
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 435.56 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (63.8%)
Info: cfl dt = 0.0036530323730623987                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8918e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.16296466452329 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7314935837023218, dt = 0.0036530323730623987
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1412.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 410.06 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.9%)
Info: cfl dt = 0.003653034572725065                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8077e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.47380639591016 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7351466160753841, dt = 0.003653034572725065
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1093.00 ns (0.3%)
   LB compute        : 395.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (67.6%)
Info: cfl dt = 0.0036530368133046217                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9230e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.78874033717024 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7387996506481092, dt = 0.0036530368133046217
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 378.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.9%)
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    | 5.0235e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.80621491246104 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7424526874614137, dt = 0.003653039095424514
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 413.89 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.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    | 4.8563e+05 | 65536 |      2 | 1.349e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.45077265878874 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7461057265568383, dt = 0.0036530414197154188
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 368.64 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.8%)
Info: cfl dt = 0.0036530437868153                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0093e+05 | 65536 |      2 | 1.308e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.52095225970467 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7497587679765536, dt = 0.0036530437868153
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 365.06 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.1%)
Info: cfl dt = 0.003653046197369458                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8742e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.80924533014816 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7534118117633688, dt = 0.003653046197369458
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (0.4%)
   patch tree reduce : 1563.00 ns (0.1%)
   gen split merge   : 862.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 1205.44 us (98.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (68.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.8708e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.74039990032288 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7570648579607382, dt = 0.003653048652030586
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 432.81 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.5%)
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    | 5.0208e+05 | 65536 |      2 | 1.305e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.75196801548464 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7607179066127687, dt = 0.0036530511514588234
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 2.33 us    (0.6%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 397.81 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.0%)
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.8649e+05 | 65536 |      2 | 1.347e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.62301838526822 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7643709577642275, dt = 0.00365305369632181
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 396.81 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.5%)
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.9307e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.94412180549372 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7680240114605492, dt = 0.0036530562872947392
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.5%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 373.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.5%)
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.6914e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.14123197984141 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.771677067747844, dt = 0.0036530589250604105
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 397.02 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.7%)
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.9367e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.06438912101717 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7753301266729045, dt = 0.003653061610309286
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 367.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (63.9%)
Info: cfl dt = 0.003653064343739543                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9904e+05 | 65536 |      2 | 1.313e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.14244782409638 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7789831882832137, dt = 0.003653064343739543
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.2%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 1143.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 451.26 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.0%)
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.9846e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.02525030600651 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7826362526269532, dt = 0.0036530671260571277
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 384.95 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.2%)
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.9586e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.5044522506511 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7862893197530103, dt = 0.003653069957975811
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 406.26 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.8%)
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.7314e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.94534414741634 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.789942389710986, dt = 0.0036530728402172402
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.5%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 370.41 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.7%)
Info: cfl dt = 0.0036530757735109957                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9218e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.76552112633816 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7935954625512034, dt = 0.0036530757735109957
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.2%)
   patch tree reduce : 1452.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 438.13 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.8%)
Info: cfl dt = 0.003653078758594642                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9589e+05 | 65536 |      2 | 1.322e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.51014120570228 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7972485383247143, dt = 0.003653078758594642
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 384.13 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.7%)
Info: cfl dt = 0.003653081796213786                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8014e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.3496353077792 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.800901617083309, dt = 0.003653081796213786
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1473.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 403.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.3%)
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.8992e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.31299716721875 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8045546988795227, dt = 0.003653084887122127
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.5%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 392.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.0%)
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.7141e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.59876869544969 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8082077837666448, dt = 0.003653088032081518
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.2%)
   LB compute        : 522.24 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (66.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.6809e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.93135432154966 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8118608717987263, dt = 0.0036530912318620103
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 1173.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 408.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.6%)
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.8327e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.97798528837636 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8155139630305883, dt = 0.0036530944872419147
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 430.54 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.1%)
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    | 4.9341e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.01333785320193 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8191670575178303, dt = 0.0036530977990078544
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.87 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.0%)
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    | 4.5179e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.66053224905762 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8228201553168382, dt = 0.0036531011679548195
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 377.05 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.1%)
Info: cfl dt = 0.0036531045948862196                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6480e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.27086656664765 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.826473256484793, dt = 0.0036531045948862196
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1764.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 358.63 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (65.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.5924e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.15528775009741 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8301263610796792, dt = 0.0036531080806139434
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 362.21 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.1%)
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.9842e+05 | 65536 |      2 | 1.315e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.01886793875458 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.833779469160293, dt = 0.003653111625958406
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (0.5%)
   patch tree reduce : 1613.00 ns (0.1%)
   gen split merge   : 952.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.1%)
   LB compute        : 1095.67 us (98.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.5%)
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.6920e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.15549866223536 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8374325807862515, dt = 0.0036531152317486088
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 396.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.7%)
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.9012e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.35361633290859 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8410856960180002, dt = 0.003653118898822192
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 380.18 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.25 us   (93.9%)
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.9109e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.5484497116932 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8447388149168225, dt = 0.0036531226280254892
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 389.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (65.3%)
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.8847e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.02162775263663 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8483919375448479, dt = 0.0036531264202135827
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 427.13 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.7%)
Info: cfl dt = 0.0036531302762503565                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8501e+05 | 65536 |      2 | 1.351e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.32818347473435 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8520450639650614, dt = 0.0036531302762503565
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.6%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 367.79 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.6%)
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.9133e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.59664180530172 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8556981942413118, dt = 0.0036531341970085516
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 432.26 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.3%)
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.9342e+05 | 65536 |      2 | 1.328e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.01668414584182 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8593513284383203, dt = 0.0036531381833698226
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 382.82 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.9%)
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.9244e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.81881434405085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.86300446662169, dt = 0.0036531422362247896
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 390.98 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.1%)
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.6703e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.72122627020563 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8666576088579148, dt = 0.00365314635647309
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1783.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 369.64 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.5%)
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.5309e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.92356349717917 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8703107552143878, dt = 0.003653150545023441
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 372.39 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.4%)
Info: cfl dt = 0.003653154802793686                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0382e+05 | 65536 |      2 | 1.623e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.0360891323299 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8739639057594113, dt = 0.003653154802793686
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1463.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 421.81 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (62.7%)
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.7468e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.25503246352858 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.877617060562205, dt = 0.003653159130710854
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 400.72 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.5%)
Info: cfl dt = 0.0036531635297112116                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6534e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.38137044533013 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8812702196929159, dt = 0.0036531635297112116
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 1482.00 ns (0.4%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 391.67 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.9%)
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.9320e+05 | 65536 |      2 | 1.329e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.97250675267672 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.884923383222627, dt = 0.0036531680007403184
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 371.12 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.2%)
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.9217e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.76539621972715 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8885765512233674, dt = 0.003653172544753079
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1472.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 378.37 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.0%)
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.5853e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.01569897434491 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8922297237681205, dt = 0.003653177162713804
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 386.87 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.2%)
Info: cfl dt = 0.003653181855596254                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5155e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.61428664453122 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8958829009308342, dt = 0.003653181855596254
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.42 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.3%)
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.8787e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.90250287158723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8995360827864305, dt = 0.003653186624383702
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 390.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (65.7%)
Info: cfl dt = 0.003653191470068986                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9158e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.64736850863316 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9031892694108141, dt = 0.003653191470068986
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.5%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 374.58 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.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.9064e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.45877946266812 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9068424608808832, dt = 0.003653196393654559
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 388.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.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    | 5.0839e+05 | 65536 |      2 | 1.289e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.0223565423921 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9104956572745377, dt = 0.0036532013961525496
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 371.19 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.8%)
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    | 5.0722e+05 | 65536 |      2 | 1.292e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.78700637255318 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9141488586706903, dt = 0.00365320647858481
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 400.83 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.5%)
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    | 4.6332e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.97780748613931 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.917802065149275, dt = 0.0036532116419829724
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1433.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 426.77 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.5%)
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.8970e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.27232668820082 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.921455276791258, dt = 0.0036532168873885046
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (0.3%)
   patch tree reduce : 1312.00 ns (0.1%)
   gen split merge   : 852.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1223.00 ns (0.1%)
   LB compute        : 1803.59 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (69.4%)
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.6116e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.543986830685 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9251084936786464, dt = 0.0036532222158527595
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 402.82 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.8%)
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.8717e+05 | 65536 |      2 | 1.345e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.76456570803357 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9287617158944992, dt = 0.0036532276284370353
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.4%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 397.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.1%)
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.9148e+05 | 65536 |      2 | 1.333e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.62979040460606 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9324149435229363, dt = 0.003653233126212623
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 405.06 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.7%)
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.8559e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.44699110503178 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.936068176649149, dt = 0.003653238710260862
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1493.00 ns (0.3%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 421.92 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.7%)
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.7992e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.31049172055506 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9397214153594098, dt = 0.0036532443816731956
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 392.45 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.0%)
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    | 4.9248e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.8293871079449 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.943374659741083, dt = 0.003653250141551222
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 390.96 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.1%)
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.8536e+05 | 65536 |      2 | 1.350e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.40242732631334 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9470279098826342, dt = 0.003653255991006749
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 411.42 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.7%)
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    | 4.9004e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.34027434529669 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.950681165873641, dt = 0.0036532619311618482
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 408.61 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.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    | 5.0178e+05 | 65536 |      2 | 1.306e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.69751120748876 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9543344278048027, dt = 0.0036532679631489057
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 381.73 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.2%)
Info: cfl dt = 0.0036532740881106743                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0681e+05 | 65536 |      2 | 1.293e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.70702321784339 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9579876957679516, dt = 0.0036532740881106743
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 389.99 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (64.6%)
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    | 5.0356e+05 | 65536 |      2 | 1.301e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.05538212273197 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9616409698560624, dt = 0.0036532803072003347
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.2%)
   patch tree reduce : 1422.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 406.96 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.2%)
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.7909e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.14501863301864 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9652942501632626, dt = 0.003653286621581537
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1502.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 417.40 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.9%)
Info: cfl dt = 0.003653293032428462                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7513e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.3505696217664 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9689475367848441, dt = 0.003653293032428462
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 380.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.2%)
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.8194e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.71645709665539 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9726008298172726, dt = 0.0036532995409258705
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 401.02 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.7%)
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.7436e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.1962332468923 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9762541293581986, dt = 0.0036533061482691555
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 384.80 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (63.7%)
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    | 4.7817e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.95970892215863 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9799074355064676, dt = 0.003653312855664396
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 398.69 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.0%)
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    | 4.8686e+05 | 65536 |      2 | 1.346e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.70450681495596 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.983560748362132, dt = 0.0036533196643284095
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 457.47 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.4%)
Info: cfl dt = 0.0036533265754888048                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7756e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.838006169553 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9872140680264605, dt = 0.0036533265754888048
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.5%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 378.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.5%)
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.7599e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.52392917898351 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9908673946019493, dt = 0.0036533335903840315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 381.59 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.5%)
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.7589e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.50258814669705 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9945207281923334, dt = 0.0036533407102634337
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 371.43 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (59.1%)
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.6517e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.352124552921 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9981740689025969, dt = 0.001825931097403144
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 372.88 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (68.0%)
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    | 5.0158e+05 | 65536 |      2 | 1.307e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 50.3095390270512 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 1088.144965169 (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  1984.54 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.70 us    (58.5%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 0 min = 0                                  [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 0 min = 0                             [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (0.3%)
   patch tree reduce : 852.00 ns  (0.2%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 812.00 ns  (0.2%)
   LB compute        : 446.07 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (62.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (0.3%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 380.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 311.00 ns  (0.1%)
   LB compute        : 385.30 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 2.27 us    (0.6%)
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (62.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (0.3%)
   patch tree reduce : 511.00 ns  (0.1%)
   gen split merge   : 360.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 341.00 ns  (0.1%)
   LB compute        : 408.89 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 2.16 us    (0.5%)
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=False
Info: time since start : 1088.3105896050001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 621.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 581.00 ns  (0.1%)
   LB compute        : 436.85 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8124e+05 | 65536 |      2 | 1.362e-01 | 0.0% |   0.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 :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1532.00 ns (0.3%)
   gen split merge   : 1031.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 420.53 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.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.7519e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.35262476375235 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003652931508385532, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 412.97 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (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    | 4.7729e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.77274303140905 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007305863016771064, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 376.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7272e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.8562242499211 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010958794525156596, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 403.62 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (65.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.8045e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4077197104928 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014611726033542128, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.6%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 359.97 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (63.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6626e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.56035078196666 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01826465754192766, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1462.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 391.87 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7634e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.58212589009864 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021917589050313192, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 432.88 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.7248e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.8087852178396 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025570520558698726, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 446.99 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.7042e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.39576768572704 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02922345206708426, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.2%)
   patch tree reduce : 1634.00 ns (0.4%)
   gen split merge   : 1313.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 418.15 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5877e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.0584447130954 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03287638357546979, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 395.04 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.6857e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.0240549039901 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036529315083855325, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 403.97 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.7046e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.40408368840396 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04018224659224086, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 401.62 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7434e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.18203275518083 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04383517810062639, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.04 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 362.48 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5738e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.77909007721782 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047488109609011925, dt = 0.002511890390988078
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1784.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1053.00 ns (0.2%)
   LB compute        : 428.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (73.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.7209e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.14046827169578 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1090.466410452 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.05, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 419.67 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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    | 4.6778e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.86543485224901 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.053652931508385536, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 402.33 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.6905e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.12045885527252 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05730586301677107, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 401.97 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.6809e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.92719614568661 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0609587945251566, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 398.16 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7276e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.86395710578044 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06461172603354214, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 431.18 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6732e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.77256725611674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06826465754192766, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 402.66 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7121e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.55368616260232 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07191758905031319, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 365.59 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6157e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.61936711439436 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07557052055869871, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 377.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (63.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6289e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.88425272881331 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07922345206708424, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 424.65 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7209e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.72966038402475 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08287638357546977, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1083.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 405.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7083e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.47793142778514 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0865293150838553, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 362.38 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.7518e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.35035914204671 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09018224659224082, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 396.92 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.6708e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.72552966068243 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09383517810062635, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.18 us   (5.1%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 397.93 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6761e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.83185163749287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09748810960901187, dt = 0.0025118903909881335
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1343.00 ns (0.3%)
   LB compute        : 388.22 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6614e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.31869437052778 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1092.497793755 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.1, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 412.85 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (61.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6228e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.76108909990646 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10365293150838553, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1964.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 390.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7176e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.66352912040324 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10730586301677106, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.4%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 400.02 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.6845e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.00036725211287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11095879452515658, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1422.00 ns (0.4%)
   gen split merge   : 1093.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 381.80 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6611e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.52956306795687 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11461172603354211, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 376.69 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.4582e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.45955566409314 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11826465754192764, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1563.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 402.69 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.6191e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.68659553363513 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12191758905031316, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.1%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 441.14 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.6687e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.68358646787438 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1255705205586987, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 387.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.5612e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.52661663088983 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12922345206708422, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 444.14 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.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.7310e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.9328351760507 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13287638357546974, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 361.39 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7277e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.86764504292084 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13652931508385527, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 421.68 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7260e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.83186588834673 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1401822465922408, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.5%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 381.79 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.6%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2770e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.82222661654951 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14383517810062632, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 397.91 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.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.4799e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.89442026932501 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14748810960901185, dt = 0.002511890390988175
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 386.83 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (65.5%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6217e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.771335031645236 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1094.560995324 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.15000000000000002, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (1.6%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 445.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6824e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.9581576290028 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15365293150838555, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 377.60 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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    | 4.7264e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.84165971536305 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15730586301677107, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 375.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6912e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.13498666870548 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1609587945251566, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 405.19 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.5019e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.33549975893743 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16461172603354213, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.5%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 363.74 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.6643e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.59391375488028 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16826465754192765, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 371.04 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.7351e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.01443006286051 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17191758905031318, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 377.06 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.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.6694e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.69688086155602 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1755705205586987, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1393.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 375.58 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.6527e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.3610183617628 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17922345206708423, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 439.20 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 10.62 us   (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.7423e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.16011031586918 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18287638357546976, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 403.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.7219e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.75043461735673 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18652931508385528, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 381.03 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6572e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.45275341824532 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1901822465922408, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 383.05 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6997e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.30434092070003 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19383517810062634, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 380.77 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.6589e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.48541381594359 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19748810960901186, dt = 0.0025118903909881474
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 384.13 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.6390e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.01057307505548 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1096.5942263650002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.2, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1723.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.2%)
   LB compute        : 496.13 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.7502e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.31852254206972 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20365293150838554, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 447.96 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6420e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.1472750088999 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20730586301677106, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 466.78 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6797e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.90269027517482 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2109587945251566, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1563.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 431.15 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6152e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.60906945751225 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21461172603354212, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1943.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 442.17 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.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.6709e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.72608610198219 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21826465754192764, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 388.99 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6661e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.6298186289305 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22191758905031317, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 388.93 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.5739e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.77988691077647 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2255705205586987, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 402.57 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6462e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.23107982822974 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22922345206708422, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 383.95 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6351e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.00917722316183 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23287638357546975, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 418.15 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.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.6594e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.49535557860794 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23652931508385527, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.2%)
   patch tree reduce : 1472.00 ns (0.3%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 430.66 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.4733e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.762601563392 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2401822465922408, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 387.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3671e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.63050827232777 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24383517810062633, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 374.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7147e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.60683063209403 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24748810960901185, dt = 0.0025118903909881474
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.2%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 408.23 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6139e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.6631574102189 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 1098.653229788 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.25, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1934.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 413.97 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.0428e+05 | 65536 |      2 | 1.621e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.12443025094063 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2536529315083855, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.32 us   (5.2%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 390.58 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.6828e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.96479603936486 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25730586301677105, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.5%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 393.88 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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    | 4.6660e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.62789544318693 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2609587945251566, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 381.15 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.5684e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.67087502056785 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2646117260335421, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 395.62 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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    | 4.5436e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.17190562428443 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26826465754192763, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 385.73 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6359e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.02447472925951 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27191758905031316, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 410.10 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6536e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.3805872016158 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2755705205586987, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 384.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6146e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.59729074960038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2792234520670842, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 453.82 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.6515e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.3371706913114 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28287638357546974, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.2%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 424.38 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.6433e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.17380818471253 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28652931508385526, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 376.66 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6141e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.58790670607047 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2901822465922408, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1793.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 422.39 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6026e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.35628506169627 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2938351781006263, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1133.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 383.25 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4995e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.28729430210508 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29748810960901184, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 379.08 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 19.21 us   (4.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.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.2509e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.65550495710674 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1100.746490602 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.30000000000000004, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (1.6%)
   patch tree reduce : 1442.00 ns (0.3%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 417.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (65.4%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3894e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.07859874486321 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30365293150838557, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 386.27 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.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.4130e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.55268631240088 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3073058630167711, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 414.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.4907e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.11157241398287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3109587945251566, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.30 us    (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 399.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (64.7%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6046e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.3964753372492 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31461172603354215, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 410.07 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.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.6947e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.20440919248996 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3182646575419277, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 404.81 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5892e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.08779160254285 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3219175890503132, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.5%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 376.51 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8748e+05 | 65536 |      2 | 1.344e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.817849482799 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32557052055869873, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.3%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 379.58 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (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    | 4.9262e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.84962616823529 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32922345206708425, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.6%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 362.12 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.8441e+05 | 65536 |      2 | 1.353e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.20247620528393 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3328763835754698, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.0%)
   patch tree reduce : 1503.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.2%)
   LB compute        : 539.30 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.1%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6859e+05 | 65536 |      2 | 1.778e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.96116345309608 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3365293150838553, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.8%)
   patch tree reduce : 1633.00 ns (0.2%)
   gen split merge   : 1253.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.1%)
   LB compute        : 690.36 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (65.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5756e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.81413692480726 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34018224659224083, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 385.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.8%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4317e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.92711209156525 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34383517810062636, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.1%)
   patch tree reduce : 1602.00 ns (0.3%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 454.37 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.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.6331e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.96866982474837 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3474881096090119, dt = 0.0025118903909881474
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 408.70 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (64.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6304e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.890636656144416 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1102.840668277 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.35000000000000003, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 411.21 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.8%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6254e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.81344364141823 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35365293150838556, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 384.03 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (62.5%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6217e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.73927605808568 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3573058630167711, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1984.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 438.80 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.7023e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.35711060570772 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3609587945251566, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 391.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 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.6609e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.52595248893743 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36461172603354214, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 413.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (63.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6853e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.01562894500798 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36826465754192766, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 375.99 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.7014e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.33855494644445 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3719175890503132, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 432.35 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (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.6364e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.03409622765949 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3755705205586987, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 389.72 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7034e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.37883256264774 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37922345206708424, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 405.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6682e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.67208732785825 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38287638357546977, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 386.26 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.3461e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.20896901119526 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3865293150838553, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 380.11 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.7048e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.4068467524691 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3901822465922408, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 382.15 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.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.6945e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.20094066166358 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39383517810062635, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 993.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 377.86 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.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.4331e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.95576823837416 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3974881096090119, dt = 0.0025118903909881474
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 368.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.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.6848e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.64155747800235 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1104.8929955580002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.4, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 420.99 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (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    | 4.4650e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.59443735969718 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40365293150838555, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1253.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 406.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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.3630e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.54856564061876 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4073058630167711, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.5%)
   patch tree reduce : 1784.00 ns (0.5%)
   gen split merge   : 1302.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 375.73 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (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.5511e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.32264337765446 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4109587945251566, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 389.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.5141e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.58118062914677 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4146117260335421, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 384.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6448e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.20300329103966 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41826465754192765, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 410.39 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 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.7367e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.04793578981973 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4219175890503132, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.2%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 414.78 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.7575e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.46401343765982 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4255705205586987, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 410.03 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.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.7172e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.65582004740955 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42922345206708423, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 385.00 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (63.6%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6855e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.02031059377002 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43287638357546976, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 421.20 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7033e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.37726590683162 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4365293150838553, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1804.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 361.07 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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    | 4.6799e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.90661298377397 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4401822465922408, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 381.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.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.4527e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.34826418499871 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44383517810062634, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1554.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 374.48 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (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.8332e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.98447133174434 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44748810960901186, dt = 0.0025118903909881474
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 362.25 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.6067e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.56363057767102 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1106.951212445 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.45, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 527.96 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (62.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4219e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.72993297736234 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45365293150838554, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (0.4%)
   patch tree reduce : 1834.00 ns (0.1%)
   gen split merge   : 932.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.1%)
   LB compute        : 1294.71 us (98.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.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.3741e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.77165522397988 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45730586301677106, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 386.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6010e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.32420778553859 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4609587945251566, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.2%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 418.88 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (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.6566e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.44104462967118 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4646117260335421, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.2%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 409.48 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.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.6621e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.55118913950348 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46826465754192764, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 1332.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 395.93 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.0%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7085e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.48084204355253 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47191758905031317, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.4%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 401.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (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    | 4.7125e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.56177910599028 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4755705205586987, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1824.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 385.46 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.5632e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.56667001088829 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4792234520670842, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 395.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.7394e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.10207762455909 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48287638357546975, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 386.11 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7512e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.3372984841037 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4865293150838553, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 429.60 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7230e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.77246988576854 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4901822465922408, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 406.61 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7007e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.32437287484863 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4938351781006263, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 393.01 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.1%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7341e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.99495554808135 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49748810960901185, dt = 0.0025118903909881474
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 378.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.7060e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.93411478041712 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1108.998141472 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.5, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1913.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 428.61 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.0%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8788e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.8989246057535 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5036529315083855, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.5%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 378.59 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.8%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9007e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.33846419302405 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.507305863016771, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.6%)
   patch tree reduce : 1763.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 366.71 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9249e+05 | 65536 |      2 | 1.331e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.82398047449516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5109587945251566, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1854.00 ns (0.5%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 383.25 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (67.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.7746e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.80746984277461 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5146117260335421, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 388.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.4%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7809e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.93350276097338 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5182646575419276, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.4%)
   patch tree reduce : 1824.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 386.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.5%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5637e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.57606116842328 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5219175890503132, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (0.8%)
   patch tree reduce : 1723.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.1%)
   LB compute        : 623.20 us  (97.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (64.6%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9115e+05 | 65536 |      2 | 1.334e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.55401880932519 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5255705205586987, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (0.8%)
   patch tree reduce : 1783.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.1%)
   LB compute        : 693.60 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.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.2701e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.68526454191169 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5292234520670842, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 358.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (63.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8351e+05 | 65536 |      2 | 1.355e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0213817582004 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5328763835754697, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 405.33 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.5%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8138e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.59455096260508 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5365293150838553, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 379.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.5%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8013e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.34411613688127 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5401822465922408, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1753.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 368.05 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6590e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.48874278820092 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5438351781006263, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1973.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 449.77 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (10.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.8095e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.50878232726815 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5474881096090118, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.2%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 1031.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 432.49 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.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.7942e+05 | 65536 |      2 | 1.367e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.15094501257214 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1110.995377215 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.55, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1803.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 511.13 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (69.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.6451e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.20849423363453 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5536529315083856, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 374.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.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.6652e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.61197503314891 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5573058630167711, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 371.82 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.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.6750e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.80931066225288 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5609587945251566, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.2%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 407.13 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.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.7371e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.05525126962928 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5646117260335421, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (0.5%)
   patch tree reduce : 1453.00 ns (0.1%)
   gen split merge   : 871.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.1%)
   LB compute        : 1049.48 us (98.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6486e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.28028542557524 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5682646575419277, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 405.73 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.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.6622e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.55301400355634 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5719175890503132, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 432.52 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.5%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6884e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.07903714585508 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5755705205586987, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.2%)
   patch tree reduce : 1904.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 462.50 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (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.4176e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.6447893670575 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5792234520670843, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.4%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 393.71 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (63.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7766e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.84896918471557 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5828763835754698, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.2%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 1051.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 435.10 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.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.6762e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.83339086437103 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5865293150838553, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.4%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 393.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (67.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8239e+05 | 65536 |      2 | 1.359e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.7970136351877 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5901822465922408, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 390.23 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.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.7477e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.26788008633031 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5938351781006264, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 392.07 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.6961e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.23306943371405 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5974881096090119, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.5%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 403.26 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.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.7324e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.29910850506465 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1113.0251515 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.6000000000000001, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 414.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.5311e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.92162061436957 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6036529315083856, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 400.17 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.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.7058e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.42822614899873 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6073058630167711, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 364.45 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.7081e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.47300659650237 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6109587945251567, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 392.53 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (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.6522e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.35080363416431 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6146117260335422, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.4%)
   patch tree reduce : 1613.00 ns (0.1%)
   gen split merge   : 962.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 17.18 us   (1.1%)
   LB compute        : 1532.55 us (97.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.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.5763e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.8292567108644 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6182646575419277, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 377.77 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (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.6937e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.1842979666667 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6219175890503132, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 364.63 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (65.3%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7263e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.83934786151796 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6255705205586988, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.3%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 371.46 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.5%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6488e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.28271378558634 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6292234520670843, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 480.39 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.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.2828e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.94022141417794 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6328763835754698, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 373.27 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.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.6752e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.8135949966736 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6365293150838554, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 403.51 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.5%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6498e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.30312759417744 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6401822465922409, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.3%)
   patch tree reduce : 17.69 us   (4.2%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 385.96 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.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.6547e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.40206614707316 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6438351781006264, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.5%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 374.49 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.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.7722e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.7597435275175 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6474881096090119, dt = 0.002511890390988092
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 440.10 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.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.7573e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.6425878904577 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 1115.071299161 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.65, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1963.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 408.47 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.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.7289e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.89148291617434 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6536529315083855, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 376.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.8%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7727e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.76911271821766 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6573058630167711, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 366.17 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.8%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7369e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.05127254772769 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6609587945251566, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.2%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 457.71 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.5%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4427e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.1488252813904 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6646117260335421, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1503.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 369.13 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.6%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6522e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.35188709917168 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6682646575419277, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.4%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 399.74 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7148e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.60775015071252 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6719175890503132, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 380.75 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.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.6653e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.61423743142164 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6755705205586987, dt = 0.003652931508385531
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 398.86 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6418e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.1433864536013 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6792234520670842, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1883.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 414.46 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.5%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6776e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.86088250103383 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828763835754698, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1964.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 424.23 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6871e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.05289473964281 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6865293150838553, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 409.51 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.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.6382e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.07084338804405 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6901822465922408, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.1%)
   patch tree reduce : 1623.00 ns (0.3%)
   gen split merge   : 1152.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 512.43 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (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.7130e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.57209055571808 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6938351781006263, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 427.66 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.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.5906e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.11648549438948 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6974881096090119, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 379.89 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.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.6245e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.8096494936492 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 1117.1107406590002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.7000000000000001, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1613.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 398.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.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.7298e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.9086223971669 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7036529315083856, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.4%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 411.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.7414e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.14236638529937 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7073058630167711, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 384.58 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.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.6368e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.04288103786654 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109587945251566, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (0.3%)
   patch tree reduce : 1813.00 ns (0.1%)
   gen split merge   : 811.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.0%)
   LB compute        : 1750.19 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (65.2%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1951e+05 | 65536 |      2 | 1.562e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.17984563633001 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7146117260335422, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 406.91 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.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.7145e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.60279816529456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7182646575419277, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 390.59 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (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.7195e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.7015600189513 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7219175890503132, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 1001.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 384.10 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7095e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.50143800837867 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7255705205586988, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.2%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 412.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.2%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7639e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.59356164249809 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7292234520670843, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 395.90 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.7%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6959e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.22951439253282 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7328763835754698, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 377.82 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.8%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7311e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.9344299258321 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7365293150838553, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 375.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (63.4%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6453e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.21258313362226 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7401822465922409, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 420.54 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.2%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7155e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.62132516897609 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7438351781006264, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.2%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 426.34 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.4%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9009e+05 | 65536 |      2 | 2.259e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.20988151666079 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7474881096090119, dt = 0.002511890390988092
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.3%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 382.79 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.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.4682e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.65256263819801 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1119.239844503 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.75, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 409.82 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.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.7340e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.99226499478586 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7536529315083855, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 394.09 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.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.5056e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.40925267644757 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.757305863016771, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.3%)
   patch tree reduce : 2.40 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 430.86 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4491e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.27717210136345 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7609587945251566, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.2%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 409.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.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.4435e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.1634601616588 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7646117260335421, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 388.15 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.6617e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.54330484139295 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7682646575419276, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 369.88 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (63.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6421e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.14918575835604 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7719175890503132, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.5%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 374.39 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (63.4%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5597e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.49520211133871 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7755705205586987, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 427.09 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7424e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.16144896947903 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7792234520670842, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (0.3%)
   patch tree reduce : 1843.00 ns (0.1%)
   gen split merge   : 941.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.1%)
   LB compute        : 1723.70 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.5736e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.7743868632449 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7828763835754697, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 403.41 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.5910e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.12413884236912 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7865293150838553, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 414.87 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.7548e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.41074775043197 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7901822465922408, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 418.95 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6925e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.16091988345555 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7938351781006263, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1814.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 424.09 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.6844e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.99856655136456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7974881096090118, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 422.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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    | 4.6678e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.40719453286984 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1121.296484944 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.8, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.4%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 396.96 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.6608e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.52471731983972 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8036529315083856, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 389.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.6340e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.98588304734847 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8073058630167711, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 402.83 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.5979e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.26120680892106 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8109587945251566, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 410.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (61.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6991e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.29251040646444 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8146117260335421, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 377.31 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7285e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.88280561993624 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8182646575419277, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 382.76 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6894e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.09746189317224 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8219175890503132, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1674.00 ns (0.4%)
   gen split merge   : 1001.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 442.81 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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    | 4.7216e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.74494002935813 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8255705205586987, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.03 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.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.7297e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.90626138737295 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8292234520670843, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 411.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.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.4847e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.98978901935318 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8328763835754698, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1724.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 388.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6115e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.5343795976114 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8365293150838553, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 449.66 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7340e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.99328259750658 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8401822465922408, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 396.16 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7913e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.14236992188995 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8438351781006264, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 371.01 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.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.7658e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.63163011687165 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8474881096090119, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 402.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7240e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.1826486784745 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 1123.328824856 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.8500000000000001, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (1.7%)
   patch tree reduce : 1863.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1303.00 ns (0.3%)
   LB compute        : 401.93 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7185e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.68285774410697 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8536529315083856, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (0.7%)
   patch tree reduce : 1443.00 ns (0.2%)
   gen split merge   : 1012.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.1%)
   LB compute        : 752.94 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.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.7126e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.56326825512308 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8573058630167711, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.3%)
   LB compute        : 413.79 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6885e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.08075612467607 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8609587945251567, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 389.67 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6808e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.92639513315699 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8646117260335422, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.5%)
   patch tree reduce : 1794.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 373.54 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.7033e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.37793509888849 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8682646575419277, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.5%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 385.31 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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    | 4.6337e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.98058068240472 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8719175890503132, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (0.1%)
   patch tree reduce : 1883.00 ns (0.0%)
   gen split merge   : 862.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.0%)
   LB compute        : 10.25 ms   (99.8%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (0.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (71.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3527e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.34105248425033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8755705205586988, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1793.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 377.37 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9205e+05 | 65536 |      2 | 1.332e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.73620817536921 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792234520670843, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.5%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 369.79 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.8806e+05 | 65536 |      2 | 1.343e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.93548130234464 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8828763835754698, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.3%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 385.40 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8843e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.00810911192688 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8865293150838554, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1203.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 402.24 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.9065e+05 | 65536 |      2 | 1.336e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.45384504060311 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8901822465922409, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 351.97 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8917e+05 | 65536 |      2 | 1.340e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.15845272503765 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8938351781006264, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 373.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6391e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.08885620800667 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8974881096090119, dt = 0.002511890390988092
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 381.81 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5863e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.282536190472186 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1125.3428511700001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.9, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.38 us    (1.5%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 1233.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 480.55 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.6322e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.95127244292067 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9036529315083855, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.3%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 403.17 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 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.6006e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.31708238368034 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073058630167711, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.5%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 377.83 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7180e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.67227267689341 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9109587945251566, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 442.94 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.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.7197e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.70531240947186 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9146117260335421, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.2%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 404.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.7337e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.98763356532395 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9182646575419277, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.2%)
   patch tree reduce : 1453.00 ns (0.3%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 461.96 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (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    | 4.7756e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.82723426687174 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9219175890503132, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 377.63 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.7562e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.43944309159689 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9255705205586987, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 423.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 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.6653e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.61477455882685 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9292234520670842, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1884.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1073.00 ns (0.3%)
   LB compute        : 382.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.2%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6671e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.65090219081914 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9328763835754698, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 1223.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 378.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (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.6756e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.82033615380531 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9365293150838553, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 449.79 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.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.9399e+05 | 65536 |      2 | 1.327e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.12430363443613 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9401822465922408, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 385.68 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.8%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8828e+05 | 65536 |      2 | 1.342e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.97846179966699 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9438351781006263, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.5%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 357.31 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.8457e+05 | 65536 |      2 | 1.352e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.23499799906129 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9474881096090119, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 407.52 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.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.7886e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.07351984464044 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1127.348306409 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.9500000000000001, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (1.7%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 414.48 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.7231e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.77494035925568 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9536529315083856, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.5%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 373.19 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (64.8%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6204e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.7145630871756 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9573058630167711, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1163.00 ns (0.3%)
   LB compute        : 387.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 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.7037e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.38460247688018 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9609587945251566, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 390.04 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7380e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.07269465747282 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9646117260335422, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.2%)
   patch tree reduce : 1633.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 451.54 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (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.4576e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.44750945651931 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9682646575419277, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 373.84 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5295e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.89016765757259 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9719175890503132, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 412.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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.7323e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.96003275288538 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9755705205586988, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 387.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (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    | 4.7059e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.4300603010582 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9792234520670843, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1644.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 403.28 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6729e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.76630430394336 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9828763835754698, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 422.70 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.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.7443e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.19977425636066 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9865293150838553, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 403.71 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.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.9031e+05 | 65536 |      2 | 1.337e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.3867749064274 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9901822465922409, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 404.96 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (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.6903e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.11618753550843 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9938351781006264, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 405.29 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.6401e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.10973175866776 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9974881096090119, dt = 0.002511890390988092
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 379.40 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (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    | 4.7190e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.11426919913457 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1129.377042776 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (1.7%)
   patch tree reduce : 1964.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 415.01 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.6963e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.23706301354247 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0036529315083855, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 386.26 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
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.6537e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.38186166828383 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.007305863016771, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1814.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 385.51 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.6776e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.86206560091226 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0109587945251566, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 423.47 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6138e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.58214709456193 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.014611726033542, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1934.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 375.73 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.5253e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.8050581977781 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0182646575419276, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1953.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 388.09 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (66.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5955e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.21347949918302 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0219175890503132, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 415.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.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.6627e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.56195234010944 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0255705205586987, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 367.90 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.1%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6966e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.24236782668511 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0292234520670842, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.4%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 426.84 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6123e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.5507399703547 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0328763835754697, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 413.07 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.0%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7169e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.64972058986213 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0365293150838553, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 411.54 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.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.6789e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.88808190714232 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0401822465922408, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 397.87 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.5%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7037e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.38492763979308 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0438351781006263, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.79 us   (5.2%)
   patch tree reduce : 1973.00 ns (0.5%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 399.37 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.5580e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.46184796324053 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0474881096090118, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 408.89 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.6190e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.73445007747487 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1131.4227434860002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.05, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.0%)
   patch tree reduce : 2.08 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 551.96 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.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.5238e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.7756627215147 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0536529315083856, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1874.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1053.00 ns (0.3%)
   LB compute        : 367.14 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (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.5306e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.91115650216766 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.057305863016771, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 394.85 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.8%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7750e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.81651187526401 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0609587945251566, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.2%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 474.07 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.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.7554e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.42353980346286 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0646117260335421, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 2.31 us    (0.6%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 391.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6318e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.94256075682502 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0682646575419277, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 407.27 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.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.6814e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.93818696105484 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0719175890503132, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1804.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 405.73 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.7203e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.7184569872375 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0755705205586987, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 383.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5779e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.85993279913464 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0792234520670843, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 424.28 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4994e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.2855493671106 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0828763835754698, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 377.03 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.6212e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.73045301530111 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0865293150838553, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.5%)
   patch tree reduce : 1834.00 ns (0.5%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 380.21 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.5689e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.67990215571244 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0901822465922408, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 384.77 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.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.7062e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.4344978198248 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0938351781006264, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 409.01 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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    | 4.5850e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.0037654485166 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0974881096090119, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1814.00 ns (0.5%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 375.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.3646e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.22422854241604 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1133.483283302 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.1, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 404.14 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.6842e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.99422835532081 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1036529315083856, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.5%)
   patch tree reduce : 1744.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 358.45 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.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.6695e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.69916872946085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1073058630167711, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1834.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 498.57 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 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.5187e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.67343935557352 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1109587945251567, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 370.44 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 20.75 us   (5.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.5168e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.63493301683465 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1146117260335422, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 385.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0790e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.84971061362346 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1182646575419277, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (0.3%)
   patch tree reduce : 1643.00 ns (0.1%)
   gen split merge   : 862.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.1%)
   LB compute        : 1790.48 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4511e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.31731873186749 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1219175890503132, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (0.3%)
   patch tree reduce : 1603.00 ns (0.1%)
   gen split merge   : 1103.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.1%)
   LB compute        : 1678.04 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.1166e+05 | 65536 |      2 | 1.592e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.60407274827313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1255705205586988, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.3%)
   patch tree reduce : 1803.00 ns (0.1%)
   gen split merge   : 981.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.0%)
   LB compute        : 1768.64 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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    | 4.1768e+05 | 65536 |      2 | 1.569e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.81233955312999 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1292234520670843, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 387.44 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.7084e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.47986389917058 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1328763835754698, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 364.41 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.7861e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.03884502037027 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1365293150838554, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 432.09 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6357e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.02097673522968 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1401822465922409, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 371.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6773e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.85520725200239 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1438351781006264, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 367.36 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (63.8%)
Info: cfl dt = 0.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.7253e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.81855171693356 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.147488109609012, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.5%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 351.42 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7468e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.49733937721135 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1135.581283355 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.1500000000000001, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1994.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 393.25 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7079e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.46854917096861 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1536529315083857, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 377.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (64.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6678e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.66425468821623 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1573058630167712, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 415.81 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.4%)
Info: cfl dt = 0.003652931508385533                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5955e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.21309153269615 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1609587945251567, dt = 0.003652931508385533
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 377.00 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.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.6409e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.1259236264442 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1646117260335422, dt = 0.003652931508385533
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 375.73 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.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.6437e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.18030452910217 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1682646575419278, dt = 0.003652931508385533
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 388.17 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.0%)
Info: cfl dt = 0.003652931508385533                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4550e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.39442543364581 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1719175890503133, dt = 0.003652931508385533
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 377.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6758e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.82446083822241 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1755705205586988, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.83 us   (5.2%)
   patch tree reduce : 1873.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 384.31 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4564e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.42238514747795 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1792234520670843, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.4%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 375.67 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.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.6554e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.41626219734471 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1828763835754699, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 384.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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.5998e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.30098590281385 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1865293150838554, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 395.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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.5999e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.30235545970244 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.190182246592241, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.2%)
   patch tree reduce : 1613.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 441.95 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.5720e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.74250252653046 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1938351781006264, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 397.16 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (62.8%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6576e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.45912931146694 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.197488109609012, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 406.98 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.6794e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.56786210885053 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1137.6416607140002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.2000000000000002, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1733.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.13 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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.6249e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.80422400365215 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2036529315083857, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.2%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 437.59 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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    | 4.6998e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.30618446543117 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2073058630167712, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 382.03 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6568e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.44477747100379 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2109587945251568, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 383.89 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6279e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.86430179458408 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2146117260335423, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 367.87 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.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.6370e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.04613906675065 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2182646575419278, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.3%)
   LB compute        : 394.94 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6360e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.02570988141818 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2219175890503133, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 425.86 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5302e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.90336906534189 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2255705205586989, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 373.27 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (63.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5482e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.26431068397854 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2292234520670844, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 405.32 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.6450e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.20798884434444 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.23287638357547, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1864.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 390.51 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6698e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.70587208458234 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2365293150838554, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 400.85 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6022e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.34943162572502 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.240182246592241, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.4%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.3%)
   LB compute        : 376.77 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4738e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.77248364025355 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2438351781006265, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 417.29 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (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.6979e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.26791965935598 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.247488109609012, dt = 0.002511890390987981
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.6%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 377.56 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.7102e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.99288040289187 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1139.6972602810001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.25, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 433.68 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.7282e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.87682746588558 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2536529315083855, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 396.11 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6489e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.28572393646914 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.257305863016771, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.3%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 392.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7446e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.20603097358342 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2609587945251566, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.4%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 365.84 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (64.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6925e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.1604917599176 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.264611726033542, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 386.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.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.7506e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.32624251087424 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2682646575419276, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.03 us    (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 450.04 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.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.5750e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.80190971620901 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2719175890503132, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 1223.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 410.43 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.5486e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.27305583689474 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2755705205586987, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 401.54 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.6099e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.50362952568179 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2792234520670842, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1692.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 377.54 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.7131e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.573854125156 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2828763835754697, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.3%)
   LB compute        : 387.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (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.6476e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.2604040966211 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2865293150838553, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.1%)
   patch tree reduce : 1643.00 ns (0.3%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 479.67 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.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.5589e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.47988857333578 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2901822465922408, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 1342.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 409.56 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6740e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.78994168235597 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2938351781006263, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 373.60 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (63.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7180e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.67208456779814 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2974881096090118, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 400.35 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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    | 4.6542e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.22022201995479 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1141.738274825 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.3, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 486.53 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.7035e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.38204392938182 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3036529315083856, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 408.76 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7011e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.3328535916082 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.307305863016771, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.3%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 389.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.6%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6537e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.38200224634205 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3109587945251566, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 368.59 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.0%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6867e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.04501173988432 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3146117260335421, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1624.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 411.31 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.6%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6298e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.90165193794448 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3182646575419277, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.4%)
   patch tree reduce : 1893.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 400.45 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6795e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.89870352974087 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3219175890503132, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.62 us   (5.2%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 382.93 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.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.5916e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.13638426255935 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3255705205586987, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1934.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 398.71 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.7189e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.69055417649685 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3292234520670843, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.5%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 381.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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    | 4.6829e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.96827003126214 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3328763835754698, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.2%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 440.53 us  (95.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    (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.6464e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.23615498131988 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3365293150838553, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 405.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.5682e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.66610238172188 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3401822465922408, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.4%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 390.19 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6305e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.91557022208794 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3438351781006264, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1744.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 406.39 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.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.6650e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.60882851550805 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3474881096090119, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.5%)
   patch tree reduce : 1743.00 ns (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 356.88 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7607e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.68906961469251 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1143.777856336 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.35, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 424.48 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.6980e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.26993748164666 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3536529315083856, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 407.95 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.6800e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.90960586203163 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3573058630167711, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 382.06 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3307e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.89972538125132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3609587945251567, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 407.59 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.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.4890e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.07697887669295 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3646117260335422, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (0.3%)
   patch tree reduce : 1954.00 ns (0.1%)
   gen split merge   : 952.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.0%)
   LB compute        : 1737.28 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.6390e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.08701118926682 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3682646575419277, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 399.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7355e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.02229447281042 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3719175890503132, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 1113.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 379.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6315e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.93684626274097 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3755705205586988, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 377.23 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7463e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.24001341986059 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3792234520670843, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.2%)
   patch tree reduce : 1954.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 421.85 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 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.6906e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.1222979122056 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3828763835754698, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 412.84 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8021e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.36003546242934 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3865293150838554, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 438.41 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 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.7560e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.43464883205725 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3901822465922409, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 407.48 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6592e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.49189519588627 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3938351781006264, dt = 0.003652931508385532
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.3%)
   patch tree reduce : 1654.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 973.00 ns  (0.2%)
   LB compute        : 401.26 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.6980e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.27093290938991 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.397488109609012, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.1%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 459.94 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.1%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6706e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.44597488459682 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1145.8206099400002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.4000000000000001, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1854.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 447.22 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.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.6929e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.16835502123966 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4036529315083857, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1884.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 400.65 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.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.7309e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.93126446499681 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4073058630167712, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.2%)
   LB compute        : 433.25 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.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.6206e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.71808252598433 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4109587945251567, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 438.56 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 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.8197e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.7131974863622 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4146117260335422, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.2%)
   patch tree reduce : 1644.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 425.43 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.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.5573e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.44737862717916 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4182646575419278, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.5%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 352.70 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.6800e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.90999616404817 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4219175890503133, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.4%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 405.90 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.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.7412e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.13785589818534 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4255705205586988, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1243.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 382.68 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.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.7119e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.54894920734262 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4292234520670843, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1543.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 443.88 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.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.5963e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.22944844543751 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4328763835754699, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1653.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 402.35 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.6485e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.27681712625281 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4365293150838554, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.4%)
   patch tree reduce : 1723.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.3%)
   LB compute        : 406.62 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.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.7591e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.49640708755045 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.440182246592241, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 408.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (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.7228e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.76928584920698 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4438351781006264, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.3%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 374.84 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.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.2056e+05 | 65536 |      2 | 1.558e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.3910310072579 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.447488109609012, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 398.81 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (63.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4617e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.563714468316135 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1147.8720691570002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.4500000000000002, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1924.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 424.51 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.0%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5686e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.67358648930072 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4536529315083857, dt = 0.0036529315083855315
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 382.19 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.7%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6093e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.49032810043379 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4573058630167712, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1592.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 411.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.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.5555e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.410410718176 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4609587945251568, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1512.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 378.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.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.7820e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.95590625804516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4646117260335423, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.5%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 357.23 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (63.7%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6229e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.76296113622577 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4682646575419278, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 407.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.7426e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.16527232750666 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4719175890503133, dt = 0.0036529315083855328
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.3%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 401.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (66.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.6997e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.30439231715529 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4755705205586989, dt = 0.003652931508385533
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 377.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.7%)
Info: cfl dt = 0.0036529315083855345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5798e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.89929205014371 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4792234520670844, dt = 0.0036529315083855345
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 382.34 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.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.6705e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.71886022727358 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.48287638357547, dt = 0.0036529315083855345
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 393.64 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.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.5332e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.96358862241232 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4865293150838554, dt = 0.0036529315083855354
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 387.54 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.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.5722e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.74548578141156 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.490182246592241, dt = 0.0036529315083855345
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 402.25 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.5%)
Info: cfl dt = 0.0036529315083855345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6653e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.61380226944564 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4938351781006265, dt = 0.0036529315083855345
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.2%)
   patch tree reduce : 1934.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 426.06 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.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.6272e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.85015957967524 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.497488109609012, dt = 0.002511890390987981
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 911.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 380.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.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    | 4.6830e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.61742216910706 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1149.924287705 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.5, dt = 0.0036529315083855354
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.4%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 417.16 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.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.6227e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.75922302775247 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5036529315083855, dt = 0.0036529315083855354
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 378.60 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.2%)
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.4659e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.61342436684579 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.507305863016771, dt = 0.003652931508385536
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 404.50 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.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.6319e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.94375826228473 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5109587945251566, dt = 0.003652931508385538
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.5%)
   patch tree reduce : 1973.00 ns (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 401.33 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (67.7%)
Info: cfl dt = 0.003652931508385539                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8067e+05 | 65536 |      2 | 1.363e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.45184815298184 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.514611726033542, dt = 0.003652931508385539
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 402.01 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.9%)
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.6023e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.350512075297 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5182646575419276, dt = 0.003652931508385539
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.4%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 380.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.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.6576e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.45947801821781 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5219175890503132, dt = 0.00365293150838554
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1203.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 391.26 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (63.5%)
Info: cfl dt = 0.0036529315083855415                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6750e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.80953617900309 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5255705205586987, dt = 0.0036529315083855415
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 382.31 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.7%)
Info: cfl dt = 0.0036529315083855423                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9097e+05 | 65536 |      2 | 1.335e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.518342959054 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5292234520670842, dt = 0.0036529315083855423
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.3%)
   patch tree reduce : 1704.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 393.87 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.2%)
Info: cfl dt = 0.0036529315083855428                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7698e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.7124882785372 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5328763835754697, dt = 0.0036529315083855428
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 381.03 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (63.8%)
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.7716e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.7479696091402 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5365293150838553, dt = 0.003652931508385544
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.5%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.3%)
   LB compute        : 370.58 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.6%)
Info: cfl dt = 0.0036529315083855454                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9274e+05 | 65536 |      2 | 1.330e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.8733939637661 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5401822465922408, dt = 0.0036529315083855454
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 380.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.5%)
Info: cfl dt = 0.003652931508385547                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7192e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.69548535041456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5438351781006263, dt = 0.003652931508385547
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.5%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 383.37 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.7%)
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    | 4.8986e+05 | 65536 |      2 | 1.338e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.29551706534174 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5474881096090118, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.6%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 360.45 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.3%)
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.7313e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.28318403312313 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1151.9363533360001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.55, dt = 0.0036529315083855506
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 404.47 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (65.6%)
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.6640e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.58785114134358 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5536529315083856, dt = 0.003652931508385552
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 385.30 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.3%)
Info: cfl dt = 0.0036529315083855536                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6623e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.5551690586933 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.557305863016771, dt = 0.0036529315083855536
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (0.5%)
   patch tree reduce : 1563.00 ns (0.1%)
   gen split merge   : 982.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.1%)
   LB compute        : 1311.64 us (98.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.4%)
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.7070e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.45213063431096 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5609587945251566, dt = 0.0036529315083855553
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 387.33 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (64.6%)
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.7234e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.77974643778826 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5646117260335421, dt = 0.0036529315083855575
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 418.65 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.2%)
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.7219e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.75036839725897 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5682646575419277, dt = 0.00365293150838556
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.5%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 375.82 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.6%)
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.7538e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.39138999882167 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5719175890503132, dt = 0.003652931508385562
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 402.02 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.0%)
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.6990e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.29143744938115 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5755705205586987, dt = 0.003652931508385565
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 412.24 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (68.5%)
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.7462e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.23819457062756 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5792234520670843, dt = 0.003652931508385568
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.4%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 373.72 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (67.0%)
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.7095e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.50154394787236 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5828763835754698, dt = 0.0036529315083855705
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 413.40 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.1%)
Info: cfl dt = 0.0036529315083855744                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7286e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.8850114225061 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5865293150838553, dt = 0.0036529315083855744
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance 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.52 us   (5.0%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 377.80 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.3%)
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.7300e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.91283305343335 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5901822465922408, dt = 0.0036529315083855774
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 422.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.5%)
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.6113e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.53083437549682 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5938351781006264, dt = 0.003652931508385581
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (0.3%)
   patch tree reduce : 1413.00 ns (0.1%)
   gen split merge   : 842.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.1%)
   LB compute        : 1702.48 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.7%)
Info: cfl dt = 0.0036529315083855853                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3712e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.71347731621562 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5974881096090119, dt = 0.002511890390988203
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1844.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 405.14 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.0%)
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.6815e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.59704976616179 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1153.968472793 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.6, dt = 0.003652931508385588
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.4%)
   patch tree reduce : 1874.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 413.62 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.7%)
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.7280e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.87285887507382 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6036529315083856, dt = 0.003652931508385592
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.5%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 429.23 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (64.8%)
Info: cfl dt = 0.0036529315083855965                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3728e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.74571748817611 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6073058630167711, dt = 0.0036529315083855965
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 2.51 us    (0.6%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 390.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.5%)
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.6709e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.72764056544987 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6109587945251567, dt = 0.0036529315083856017
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1853.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 395.58 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.9%)
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.6914e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.13807229253558 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6146117260335422, dt = 0.0036529315083856065
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.5%)
   patch tree reduce : 2.23 us    (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 387.58 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.1%)
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    | 4.6286e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.87863461488199 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6182646575419277, dt = 0.0036529315083856126
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1753.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 404.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.2%)
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.6838e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.98509775105987 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6219175890503132, dt = 0.0036529315083856186
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 386.40 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.0%)
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.6969e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.24904848615793 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6255705205586988, dt = 0.0036529315083856256
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 380.52 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (66.8%)
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.6301e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.90805327936225 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6292234520670843, dt = 0.003652931508385632
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 389.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.2%)
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.5533e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.36773557500538 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6328763835754698, dt = 0.0036529315083856395
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.4%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 386.75 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (63.9%)
Info: cfl dt = 0.0036529315083856477                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6062e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.428849720897 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6365293150838556, dt = 0.0036529315083856477
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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    (0.3%)
   patch tree reduce : 1703.00 ns (0.1%)
   gen split merge   : 842.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.1%)
   LB compute        : 1590.09 us (98.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.4%)
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.4255e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.80359186152731 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401822465922413, dt = 0.003652931508385656
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 413.84 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.5%)
Info: cfl dt = 0.0036529315083856646                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7769e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.85338176863301 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.643835178100627, dt = 0.0036529315083856646
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 422.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.4%)
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.6986e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.28195092096392 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6474881096090128, dt = 0.0025118903909873147
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 1193.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 391.91 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.2%)
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    | 4.7069e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.94691563530365 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1156.021684154 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.6500000000000001, dt = 0.003652931508385681
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.2%)
   patch tree reduce : 1774.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 471.10 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.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.7328e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.96935240624123 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6536529315083859, dt = 0.003652931508385693
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.5%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 375.03 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (65.2%)
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.7904e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.12414399890496 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6573058630167716, dt = 0.0036529315083857054
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1684.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 378.13 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.4%)
Info: cfl dt = 0.003652931508385718                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7287e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.88596990375835 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6609587945251574, dt = 0.003652931508385718
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.5%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 371.20 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.2%)
Info: cfl dt = 0.0036529315083857305                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7278e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.8679475362982 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6646117260335431, dt = 0.0036529315083857305
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1814.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 382.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (64.4%)
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.5827e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.95699529372456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6682646575419289, dt = 0.0036529315083857453
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.2%)
   patch tree reduce : 1803.00 ns (0.4%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 457.87 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.6%)
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.6715e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.73836155482033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6719175890503146, dt = 0.0036529315083857605
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 399.92 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
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.7141e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.59368367504904 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6755705205587004, dt = 0.0036529315083857765
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.3%)
   patch tree reduce : 1813.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 420.54 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.7%)
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.7597e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.5078660358958 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6792234520670861, dt = 0.0036529315083857943
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.2%)
   patch tree reduce : 1974.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 415.38 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.6%)
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.6393e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.09239094104078 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6828763835754719, dt = 0.003652931508385813
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.3%)
   patch tree reduce : 1883.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.2%)
   LB compute        : 418.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (63.0%)
Info: cfl dt = 0.0036529315083858316                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5868e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.03951170571837 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6865293150838576, dt = 0.0036529315083858316
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1764.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.2%)
   LB compute        : 408.18 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (64.8%)
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.4983e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.26265264875276 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6901822465922434, dt = 0.0036529315083858533
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 388.39 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (66.4%)
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.4380e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.05307317577916 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6938351781006291, dt = 0.0036529315083858754
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.3%)
   patch tree reduce : 1794.00 ns (0.4%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 404.18 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.1%)
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.6582e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.471239926404 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.697488109609015, dt = 0.0025118903909850943
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1734.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 413.87 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.2%)
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.7314e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.28530401919677 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1158.0628917660001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.7000000000000002, dt = 0.0036529315083859166
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 434.45 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.7%)
Info: cfl dt = 0.0036529315083859443                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5680e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.66271665907641 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7036529315083861, dt = 0.0036529315083859443
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.0%)
   patch tree reduce : 1552.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 507.34 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.6%)
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.6853e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.0152895184048 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7073058630167721, dt = 0.0036529315083859725
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 379.38 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 19.71 us   (93.4%)
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.8154e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.62740555606463 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.710958794525158, dt = 0.003652931508386005
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 399.03 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.0%)
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.7920e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.15656541820788 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.714611726033544, dt = 0.0036529315083860376
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.2%)
   patch tree reduce : 1763.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 441.26 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (64.9%)
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.6721e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.75117557557813 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.71826465754193, dt = 0.0036529315083860727
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 383.85 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (65.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.6759e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.82664716174715 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.721917589050316, dt = 0.0036529315083861104
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.4%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 391.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.4%)
Info: cfl dt = 0.0036529315083861495                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7468e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.24984620288814 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7255705205587022, dt = 0.0036529315083861495
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.6%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 359.96 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.1%)
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.6480e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.26699851386985 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7292234520670884, dt = 0.003652931508386193
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 397.18 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.5%)
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.7549e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.41206023704302 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7328763835754746, dt = 0.003652931508386238
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.1%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 460.02 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.7%)
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.6871e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.05187969568993 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7365293150838608, dt = 0.003652931508386286
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 376.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (64.9%)
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.7241e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.79469921837763 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.740182246592247, dt = 0.003652931508386338
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.5%)
   patch tree reduce : 1844.00 ns (0.5%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 360.10 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.1%)
Info: cfl dt = 0.0036529315083863923                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8248e+05 | 65536 |      2 | 1.358e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.81474581710953 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7438351781006334, dt = 0.0036529315083863923
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.4%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1173.00 ns (0.3%)
   LB compute        : 388.50 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.0%)
Info: cfl dt = 0.0036529315083864504                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7165e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.64121754257538 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7474881096090198, dt = 0.0025118903909802093
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 378.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (65.7%)
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    | 4.7218e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.15233150779257 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1160.0851388140002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.75, dt = 0.003652931508386493
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 422.00 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.6%)
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.7636e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.58686827910037 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7536529315083864, dt = 0.0036529315083865576
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1393.00 ns (0.3%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 418.49 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.1%)
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    | 4.7490e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.29480181118016 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.757305863016773, dt = 0.003652931508386626
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.3%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 408.43 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.0%)
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    | 4.7270e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.85174222040253 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7609587945251597, dt = 0.0036529315083866994
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 378.86 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (65.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    | 4.7439e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.19224977893248 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7646117260335463, dt = 0.0036529315083867774
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 413.73 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.8%)
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.6872e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.05473653875454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7682646575419332, dt = 0.0036529315083868603
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.5%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 363.40 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.0%)
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.7540e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.39370531767491 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.77191758905032, dt = 0.0036529315083869487
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.6%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 922.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 376.79 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.8%)
Info: cfl dt = 0.003652931508387042                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7607e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.52818222250899 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.775570520558707, dt = 0.003652931508387042
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 395.71 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (63.7%)
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.7537e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.38936539794733 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.779223452067094, dt = 0.003652931508387142
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.2%)
   patch tree reduce : 1984.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 422.31 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.1%)
Info: cfl dt = 0.0036529315083872484                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6271e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.84776679871754 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.782876383575481, dt = 0.0036529315083872484
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.5%)
   patch tree reduce : 1664.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 376.52 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (64.7%)
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.7342e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.99667384910572 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7865293150838684, dt = 0.0036529315083873607
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 364.63 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.9%)
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.8153e+05 | 65536 |      2 | 1.361e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.62463593659245 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7901822465922557, dt = 0.00365293150838748
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.2%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 400.01 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.8%)
Info: cfl dt = 0.003652931508387607                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6220e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.74508401705631 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7938351781006432, dt = 0.003652931508387607
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.2%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 391.23 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.5%)
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.5888e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.07991863219297 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7974881096090307, dt = 0.002511890390969329
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1894.00 ns (0.4%)
   gen split merge   : 1011.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 424.25 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.5%)
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.6895e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.70714554703028 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1162.1024974640002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.8, dt = 0.0036529315083878404
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 393.47 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.5%)
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.6652e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.61179644501154 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8036529315083878, dt = 0.0036529315083879904
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.4%)
   patch tree reduce : 1672.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 382.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.6%)
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.7289e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.89168285371345 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8073058630167758, dt = 0.0036529315083881496
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.3%)
   patch tree reduce : 1823.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 407.73 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.7%)
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.7294e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.9017164147278 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.810958794525164, dt = 0.003652931508388317
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.1%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 454.26 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.9%)
Info: cfl dt = 0.0036529315083884966                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7224e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.76058445377261 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8146117260335524, dt = 0.0036529315083884966
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1794.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 372.41 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.3%)
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.7488e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.28971619053621 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8182646575419408, dt = 0.0036529315083886874
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.3%)
   patch tree reduce : 1773.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 381.18 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.3%)
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.7593e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.50042246954753 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8219175890503294, dt = 0.003652931508388889
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.3%)
   patch tree reduce : 1714.00 ns (0.4%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 377.57 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (67.4%)
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.7893e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.10278486111159 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8255705205587183, dt = 0.003652931508389104
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 382.85 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.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.6772e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.85286688066914 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8292234520671073, dt = 0.003652931508389332
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.4%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 394.19 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (65.5%)
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.5288e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.87650661777091 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8328763835754966, dt = 0.0036529315083895725
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 377.30 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (63.3%)
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.7921e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.15817131352954 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8365293150838862, dt = 0.003652931508389828
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 388.77 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (65.3%)
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.7457e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.22709812949032 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.840182246592276, dt = 0.0036529315083900994
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.4%)
   patch tree reduce : 1783.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 397.11 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.4%)
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.7347e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.00727873379712 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.843835178100666, dt = 0.0036529315083903874
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.2%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 425.77 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.9%)
Info: cfl dt = 0.003652931508390693                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6866e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.04237203758805 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8474881096090565, dt = 0.002511890390943572
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1713.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 376.58 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (62.8%)
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.7839e+05 | 65536 |      2 | 1.370e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.0087485803168 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 1164.1162700910002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.85, dt = 0.003652931508390914
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.3%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 441.36 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.6%)
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.3887e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.06522363823252 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.853652931508391, dt = 0.003652931508391251
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.3%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 372.33 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.0%)
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.7198e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.70759113283663 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8573058630167822, dt = 0.003652931508391608
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.5%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 374.47 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (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.7493e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.29917387651723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8609587945251738, dt = 0.0036529315083919872
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.3%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 400.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.6%)
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    | 4.6700e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.70794537829953 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8646117260335657, dt = 0.003652931508392388
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 424.35 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (65.4%)
Info: cfl dt = 0.003652931508392813                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7398e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.10899766670632 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8682646575419581, dt = 0.003652931508392813
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.5%)
   patch tree reduce : 1904.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 375.83 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.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.7959e+05 | 65536 |      2 | 1.366e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.23543220769614 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.871917589050351, dt = 0.003652931508393264
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 372.94 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.4%)
Info: cfl dt = 0.003652931508393742                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7741e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.79684817605451 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8755705205587443, dt = 0.003652931508393742
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 448.06 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.8%)
Info: cfl dt = 0.003652931508394248                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7516e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.34552129070123 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.879223452067138, dt = 0.003652931508394248
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.4%)
   patch tree reduce : 1663.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 385.33 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.7%)
Info: cfl dt = 0.0036529315083947828                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7610e+05 | 65536 |      2 | 1.377e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.53457171259662 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8828763835755322, dt = 0.0036529315083947828
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 369.80 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.3%)
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.7765e+05 | 65536 |      2 | 1.372e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.84529746472612 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.886529315083927, dt = 0.0036529315083953496
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.3%)
   patch tree reduce : 1833.00 ns (0.4%)
   gen split merge   : 941.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 382.04 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 20.97 us   (5.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.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.7086e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.4841329933096 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8901822465923224, dt = 0.00365293150839595
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.4%)
   patch tree reduce : 1532.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 405.15 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (67.1%)
Info: cfl dt = 0.0036529315083965847                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7860e+05 | 65536 |      2 | 1.369e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.03753557274447 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8938351781007183, dt = 0.0036529315083965847
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.2%)
   patch tree reduce : 1502.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 431.93 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.4%)
Info: cfl dt = 0.0036529315083972573                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6778e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.86567537902884 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.897488109609115, dt = 0.002511890390885174
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1754.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 416.64 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (66.4%)
Info: cfl dt = 0.003652931508397743                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6570e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.25844002594516 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1166.138294138 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.9000000000000001, dt = 0.003652931508397743
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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 : 1673.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 410.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.7%)
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.8063e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.44296165991749 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9036529315083979, dt = 0.003652931508398483
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1482.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 412.35 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.2%)
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.8316e+05 | 65536 |      2 | 1.356e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.95181524485467 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9073058630167963, dt = 0.003652931508399266
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.3%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 412.93 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.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.8176e+05 | 65536 |      2 | 1.360e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.6716316320802 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9109587945251956, dt = 0.003652931508400095
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 399.16 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.2%)
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.7367e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.0477990822393 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9146117260335958, dt = 0.003652931508400971
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.3%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 408.61 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.2%)
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.6677e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.66191182300463 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9182646575419968, dt = 0.003652931508401898
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (0.3%)
   patch tree reduce : 1803.00 ns (0.1%)
   gen split merge   : 852.00 ns  (0.0%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.1%)
   LB compute        : 1708.07 us (98.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.8%)
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.6996e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.3035929737847 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9219175890503988, dt = 0.003652931508402878
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.2%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 410.77 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (63.7%)
Info: cfl dt = 0.0036529315084039148                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6908e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.126351501794 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9255705205588016, dt = 0.0036529315084039148
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1733.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 406.63 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.6%)
Info: cfl dt = 0.0036529315084050107                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5801e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.90509996596086 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9292234520672056, dt = 0.0036529315084050107
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.3%)
   patch tree reduce : 1944.00 ns (0.5%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 403.71 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.6%)
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.7253e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.81856470705375 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9328763835756106, dt = 0.0036529315084061695
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.4%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1313.00 ns (0.3%)
   LB compute        : 386.41 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.9%)
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.6797e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.90317439397913 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9365293150840168, dt = 0.003652931508407394
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.3%)
   patch tree reduce : 1633.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 400.30 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.0%)
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.7141e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.59284676029444 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.940182246592424, dt = 0.0036529315084086874
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.1%)
   patch tree reduce : 1583.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 445.16 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.4%)
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.6546e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.39914599607732 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9438351781008327, dt = 0.003652931508410056
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.3%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 422.37 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.7%)
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.6800e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.90966286533161 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9474881096092427, dt = 0.0025118903907574985
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.2%)
   patch tree reduce : 1614.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 430.22 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.0%)
Info: cfl dt = 0.0036529315084125433                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6405e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.0301677636904 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 1168.158231676 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.9500000000000002, dt = 0.0036529315084125433
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.5%)
   patch tree reduce : 1572.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 432.57 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (66.6%)
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.6924e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.15889054567066 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9536529315084128, dt = 0.0036529315084141293
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 395.99 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.2%)
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.6574e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.45657287303152 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.957305863016827, dt = 0.0036529315084158046
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.5%)
   patch tree reduce : 1423.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 400.23 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (64.3%)
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    | 4.6922e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.15518874529913 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9609587945252427, dt = 0.0036529315084175723
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.2%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 395.23 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.9%)
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.5804e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.91190431119043 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9646117260336602, dt = 0.00365293150841944
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 382.02 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.6%)
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.6555e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.41764315294353 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9682646575420797, dt = 0.0036529315084214116
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 385.59 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.9%)
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    | 4.6706e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.72187788729333 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9719175890505012, dt = 0.0036529315084234937
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.2%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 423.92 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.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.7218e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.74835589754822 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9755705205589247, dt = 0.0036529315084256916
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.5%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 380.68 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.3%)
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.7425e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.16375382915766 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9792234520673504, dt = 0.0036529315084280114
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.2%)
   patch tree reduce : 1523.00 ns (0.3%)
   gen split merge   : 1092.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 428.19 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.4%)
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.6613e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.53505530221825 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9828763835757783, dt = 0.003652931508430461
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.3%)
   patch tree reduce : 1673.00 ns (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 430.11 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.0%)
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.8865e+05 | 65536 |      2 | 1.341e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0527084149898 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9865293150842087, dt = 0.0036529315084330447
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.5%)
   patch tree reduce : 1703.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 372.53 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.2%)
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.7812e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.93937264987306 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9901822465926418, dt = 0.0036529315084357704
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.6%)
   patch tree reduce : 1743.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 353.45 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (64.4%)
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.8601e+05 | 65536 |      2 | 1.348e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.52356074051465 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9938351781010775, dt = 0.0036529315084386465
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.3%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 399.95 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.1%)
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.6824e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.9572701631756 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.997488109609516, dt = 0.0025118903904839396
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 8192 min = 8192                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 8192 min = 8192                       [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.4%)
   patch tree reduce : 17.27 us   (4.1%)
   gen split merge   : 972.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 390.05 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.4%)
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.6886e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.69476161289651 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1170.176504214 (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: (19 minutes 43.843 seconds)

Estimated memory usage: 496 MB

Gallery generated by Sphinx-Gallery